* fix typo

* fix typo

* fix typos

* fix typo
This commit is contained in:
omahs
2023-09-23 10:53:09 +02:00
committed by GitHub
parent dc50add8a7
commit b203150ac4
4 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@ class LangtonsAnt:
self.board = [[True] * width for _ in range(height)]
self.ant_position: tuple[int, int] = (width // 2, height // 2)
# Initially pointing left (similar to the the wikipedia image)
# Initially pointing left (similar to the wikipedia image)
# (0 = 0° | 1 = 90° | 2 = 180 ° | 3 = 270°)
self.ant_direction: int = 3