time: remove an unnecessary comment from quote

This commit is contained in:
1911860538 2025-03-13 19:55:11 +08:00
parent 4da6dc9926
commit 5445b54771

View file

@ -891,8 +891,6 @@ func quote(s string) string {
if c == '"' || c == '\\' {
buf = append(buf, '\\')
}
// Since c < runeSelf && c >= ' ' (i.e., 32 <= c < 128),
// `byte(c)` is used for better performance.
buf = append(buf, byte(c))
}
}