添加reader-yaml目录下的注释

This commit is contained in:
chenjiekun
2021-09-02 10:32:27 +08:00
parent 75d4ba9ddf
commit 72db823f8f
6 changed files with 18 additions and 13 deletions

View File

@@ -10,7 +10,6 @@ package utils
import "testing"
func BenchmarkV1(b *testing.B) {
for n := 0; n < b.N; n++ {
GetRandomString(16) // run fib(30) b.N times
@@ -18,6 +17,6 @@ func BenchmarkV1(b *testing.B) {
}
func BenchmarkV2(b *testing.B) {
for n := 0; n < b.N; n++ {
GetRandomStringV2(16) // run fib(30) b.N times
//GetRandomStringV2(16) // run fib(30) b.N times
}
}