mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
fix extra ampersands
This commit is contained in:
parent
b6116eeb98
commit
899cbeabd7
79 changed files with 372 additions and 376 deletions
|
@ -145,7 +145,7 @@ fn render_main_content(
|
|||
}
|
||||
}
|
||||
|
||||
type_annotation_to_html(0, &mut content, &type_ann);
|
||||
type_annotation_to_html(0, &mut content, type_ann);
|
||||
|
||||
buf.push_str(
|
||||
html_node(
|
||||
|
@ -541,7 +541,7 @@ fn should_be_multiline(type_ann: &TypeAnnotation) -> bool {
|
|||
if is_multiline {
|
||||
break;
|
||||
}
|
||||
is_multiline = should_be_multiline(&value);
|
||||
is_multiline = should_be_multiline(value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue