Merge pull request #16 from timotheecour/patch-1

Update tbitranges.nim
This commit is contained in:
Yuriy Glukhov 2018-07-20 10:48:26 +03:00 committed by GitHub
commit e3f7793de5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ proc randomBytes(n: int): seq[byte] =
for i in 0 ..< result.len:
result[i] = byte(rand(256))
suite "bir ranges":
suite "bit ranges":
test "basic":
var a = @[byte 0b10101010, 0b11110000, 0b00001111, 0b01010101]