1
0

formatting

This commit is contained in:
Arpad Ryszka 2025-11-02 22:15:52 +01:00
parent 82b8d4c082
commit 3badcb3af6
2 changed files with 2 additions and 2 deletions

View File

@ -357,7 +357,7 @@ lines.</p>
<h6>H6</h6> <h6>H6</h6>
` `
if "\n" + b.String() != expect { if "\n"+b.String() != expect {
t.Fatal("\n" + b.String()) t.Fatal("\n" + b.String())
} }
}) })

View File

@ -671,7 +671,7 @@ Some sample text... on multiple lines.
.TH "This is a title \(dq\\\(dq" 1 "" "" "" .TH "This is a title \(dq\\\(dq" 1 "" "" ""
` `
if "\n" + b.String() != expect { if "\n"+b.String() != expect {
t.Fatal("\n" + b.String()) t.Fatal("\n" + b.String())
} }
}) })