enable prealloc

Find slice declarations that could potentially be pre-allocated.

Signed-off-by: Kai Xia <kaix+github@fastmail.com>
This commit is contained in:
Kai Xia
2026-02-25 21:07:28 +11:00
parent 09cf8efde6
commit 4e6589d51f
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ func formatComponent(component string) string {
}
func formatFields(fields map[string]any) string {
var parts []string
parts := make([]string, 0, len(fields))
for k, v := range fields {
parts = append(parts, fmt.Sprintf("%s=%v", k, v))
}