Skip to content

Commit 1679b26

Browse files
committed
Docs: fix typos.
1 parent cf0cf64 commit 1679b26

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

examples/no-spoon/no_spoon.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# ```
3232
#
3333
# Store this an an array of lines; each lines contains these characters.
34-
# Therefore, `line[y][x]` gives the cell at the coordinate $(𝑥,𝑦)$ (note the
34+
# Therefore, `line[y][x]` gives the cell at the coordinate $(𝑥,𝑦)$ (note the
3535
# reversed order).
3636
line = []
3737
for y in range(height):
@@ -66,10 +66,10 @@
6666
#
6767
# * Loop through each cell. If it's occupied (a node):
6868
#
69-
# * Look for a node to its right; if not found, return coorindates of
70-
# $(-1,-1)$.
71-
# * Look for a node to the bottom; if not found, return coorindates
72-
# of $(−1,−1)$.
69+
# * Look for a node to its right; if not found, return coordinates of
70+
# $(−1,−1)$.
71+
# * Look for a node to the bottom; if not found, return coordinates of
72+
# $(−1,−1)$.
7373
for x1 in range(width):
7474
for y1 in range(height):
7575
if line[y1][x1] == "0":

0 commit comments

Comments
 (0)