aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2022-05-08 17:50:01 +0200
committerJulien Dessaux2022-05-08 17:50:01 +0200
commitf9e411f8bc392e45f1cd61ff744061ca3499c29c (patch)
treeb6984350c081d1c296239d6c235fefb1e33092a3
parentSimplified unnecessary code (diff)
downloadnimfunge98-f9e411f8bc392e45f1cd61ff744061ca3499c29c.tar.gz
nimfunge98-f9e411f8bc392e45f1cd61ff744061ca3499c29c.tar.bz2
nimfunge98-f9e411f8bc392e45f1cd61ff744061ca3499c29c.zip
typo
-rw-r--r--src/pointer.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pointer.nim b/src/pointer.nim
index ae11ce8..95032dd 100644
--- a/src/pointer.nim
+++ b/src/pointer.nim
@@ -10,7 +10,7 @@ randomize()
type
Pointer* = object
- x, y: int # The pointer's positiont
+ x, y: int # The pointer's position
dx, dy: int # The pointer's traveling delta
sox, soy: int # The storage offset
stringMode, lastCharWasSpace: bool # The string mode flags