fix extra ampersands

This commit is contained in:
Folkert 2021-07-29 17:32:08 +02:00
parent b6116eeb98
commit 899cbeabd7
79 changed files with 372 additions and 376 deletions

View file

@ -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);
}
}