Merge pull request #52 from JinhaiZ/patch-2

fix a typo
This commit is contained in:
Yang.Y 2016-10-18 15:12:11 +08:00 committed by GitHub
commit 80f9f1d5a7

View File

@ -360,7 +360,7 @@ Shebang
# in the array and the array size and then do binary search to
# get the exact number.
if i & (i-1) == 0: # true if i is a power of 2
if i & (i-1) == 0: # true iff i is a power of 2
为了提高可读性, 注释应该至少离开代码2个空格.