mirror of
https://github.com/valyala/fasthttp.git
synced 2026-06-14 15:56:44 +03:00
Fixed a typo
This commit is contained in:
@@ -11,9 +11,9 @@ func BenchmarkInt2HexByte(b *testing.B) {
|
||||
var i int
|
||||
for pb.Next() {
|
||||
i = 16
|
||||
for i >= 0 {
|
||||
int2hexbyte(i)
|
||||
for i > 0 {
|
||||
i--
|
||||
int2hexbyte(i)
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user