修改示例中结果为map输出的地方增加May

This commit is contained in:
iamyl 2021-11-10 01:12:22 +08:00 committed by GitHub
parent 7f24f0637b
commit 836be74d13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -315,7 +315,7 @@ func ExampleCountChars() {
rsStr = gstr.CountChars(str, noSpace)
fmt.Println(rsStr)
// Output:
// May Output:
// map[ :2 -:1 .:1 N:1 V:1 _:1 a:1 c:1 e:4 f:1 g:1 i:2 m:1 o:2 r:2 s:2 t:1 u:1 y:1]
// map[-:1 .:1 N:1 V:1 _:1 a:1 c:1 e:4 f:1 g:1 i:2 m:1 o:2 r:2 s:2 t:1 u:1 y:1]
}