Improved code style

This commit is contained in:
2025-01-30 22:23:38 +01:00
parent 162824ec1c
commit 313302b9c8
12 changed files with 17 additions and 22 deletions

View File

@ -19,7 +19,7 @@ func bench(n int) func(b *testing.B) {
return func(b *testing.B) {
input := bytes.Repeat(line, n)
for i := 0; i < b.N; i++ {
for range b.N {
token.Tokenize(input)
}
}