Skip to content

Commit 9d1fd78

Browse files
authored
Fix syntax err in EXAMPLES.md (#146)
1 parent 86b103f commit 9d1fd78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ Chances are, if you're reading this you probably like XKCD. So, let's make the m
199199
codes = []
200200

201201
# loop over horizontals
202-
for r,rr in enumerate(range1, H, 2)):
202+
for r,rr in enumerate(range(1, H, 2)):
203203
run = []
204204
for c,cc in enumerate(range(1, W, 2)):
205205
if grid[rr-1,cc]:

0 commit comments

Comments
 (0)