Skip to content

Commit 824deb8

Browse files
author
Zheyuan Chen
authored
Update README.md
1 parent 09e811b commit 824deb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ print(1 /to/ INF /take/ 5)
100100
# return [1, 2, 3, 4, 5]
101101

102102
# print all combinations of [1..3] * [4..6]
103-
print([(x, y) for x, y in (1 /to/ 3) * (4 /to /6)])
103+
print([(x, y) for x, y in (1 /to/ 3) * (4 /to/ 6)])
104104
# return [(1, 4), (1, 5), (1, 6), (2, 4), (2, 5), (2, 6), (3, 4), (3, 5), (3, 6)]
105105
```
106106

0 commit comments

Comments
 (0)