all: rephrase prose to fit codebase voice

Reword comments, one doc paragraph, and one test failure message
so the prose reads naturally. No behaviour change.
This commit is contained in:
Kristoffer Dalby 2026-04-29 14:41:37 +00:00
parent de60982d83
commit 010a5564c5
11 changed files with 21 additions and 21 deletions

View file

@ -19,7 +19,7 @@ func TestPingPageEscapesQuery(t *testing.T) {
t.Run(p, func(t *testing.T) {
out := PingPage(p, nil, nil).Render()
if strings.Contains(out, p) {
t.Fatalf("unescaped payload rendered verbatim: %q", p)
t.Fatalf("payload rendered without escaping: %q", p)
}
})
}