mirror of
https://github.com/ziglang/zig.git
synced 2026-02-14 13:30:45 +00:00
fix fmt
This commit is contained in:
parent
ebdd9e8719
commit
d82b3e2fb1
@ -989,10 +989,9 @@ fn tokenizeAndPrintRaw(
|
||||
try out.writeAll("</span>");
|
||||
},
|
||||
|
||||
.multiline_string_literal_line,
|
||||
=> {
|
||||
.multiline_string_literal_line => {
|
||||
try out.writeAll("<span class=\"tok-str\">");
|
||||
try writeEscaped(out, src[token.loc.start..token.loc.end - 1]);
|
||||
try writeEscaped(out, src[token.loc.start .. token.loc.end - 1]);
|
||||
try out.writeAll("</span>" ++ end_line ++ "\n" ++ start_line);
|
||||
},
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user