Skip to content

Commit e9da098

Browse files
1 str instead of 2 chars
1 parent 6d249e0 commit e9da098

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/filters.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ impl Display for Span<'_> {
2727
f.write_str(class)?;
2828
f.write_char(' ')?;
2929
}
30-
f.write_char('"')?;
31-
f.write_char('>')?;
30+
f.write_str("\">")?;
3231
Html.write_escaped_str(&mut *f, self.content)?;
3332
f.write_str("</span>")?;
3433
Ok(())

0 commit comments

Comments
 (0)