Fixed a typo

This commit is contained in:
Aliaksandr Valialkin
2015-11-30 20:07:22 +02:00
parent 192c5af2fa
commit bf20fa37e4
+2 -2
View File
@@ -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)
}
}
})