From 5445b547712bbfc77a5c17d76194291c22eb4a05 Mon Sep 17 00:00:00 2001 From: 1911860538 Date: Thu, 13 Mar 2025 19:55:11 +0800 Subject: [PATCH] time: remove an unnecessary comment from quote --- src/time/format.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/time/format.go b/src/time/format.go index 8bc1c30592..87e990d48a 100644 --- a/src/time/format.go +++ b/src/time/format.go @@ -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)) } }