Matt Bolt před 4 roky
rodič
revize
5181585b9a
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      pkg/util/stringutil/stringutil.go

+ 1 - 1
pkg/util/stringutil/stringutil.go

@@ -23,7 +23,7 @@ const (
 var alpha = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
 var alpha = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
 var alphanumeric = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
 var alphanumeric = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
 
 
-// Any strings created at runtime, duplicate or not, is copied, even though by specification,
+// Any strings created at runtime, duplicate or not, are copied, even though by specification,
 // a go string is immutable. This utility allows us to cache runtime strings and retrieve them
 // a go string is immutable. This utility allows us to cache runtime strings and retrieve them
 // when we expect heavy duplicates.
 // when we expect heavy duplicates.
 var strings sync.Map
 var strings sync.Map