From 6637e115e86775de278e7b89755d575a22419a1d Mon Sep 17 00:00:00 2001 From: Matthew Goodson Date: Thu, 11 Jan 2018 14:26:15 +1300 Subject: [PATCH] Fix typo in comment. --- pyguide.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyguide.html b/pyguide.html index 6987f2b..f026c92 100644 --- a/pyguide.html +++ b/pyguide.html @@ -1711,7 +1711,7 @@ No: def foo(a, b=FLAGS.my_thing): # sys.argv has # in the array and the array size and then do binary search to # get the exact number. -if i & (i-1) == 0: # true iff i is a power of 2 +if i & (i-1) == 0: # true if i is a power of 2