diff options
author | Julien Dessaux | 2022-05-08 17:50:01 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-05-08 17:50:01 +0200 |
commit | f9e411f8bc392e45f1cd61ff744061ca3499c29c (patch) | |
tree | b6984350c081d1c296239d6c235fefb1e33092a3 /src | |
parent | Simplified unnecessary code (diff) | |
download | nimfunge98-f9e411f8bc392e45f1cd61ff744061ca3499c29c.tar.gz nimfunge98-f9e411f8bc392e45f1cd61ff744061ca3499c29c.tar.bz2 nimfunge98-f9e411f8bc392e45f1cd61ff744061ca3499c29c.zip |
typo
Diffstat (limited to '')
-rw-r--r-- | src/pointer.nim | 2 |
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 |