Merge pull request #5 from NeoInversion/master

Fix typo
This commit is contained in:
Rerumu 2021-12-11 00:43:04 -05:00 committed by GitHub
commit 13f9377cc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ do
local count = 0 local count = 0
while num ~= 0 do while num ~= 0 do
num = bit.band(num, num - 1) num = bit32.band(num, num - 1)
count = count + 1 count = count + 1
end end