summaryrefslogtreecommitdiff
path: root/docs/MODDING.md
diff options
context:
space:
mode:
authorReuben D'Souza <46090211+reubenjds@users.noreply.github.com>2024-12-28 00:25:25 -0500
committerGitHub <noreply@github.com>2024-12-27 22:25:25 -0700
commitfc8d581efb6f329517c27209c35ac2195eb357ae (patch)
tree4e391f3fe6bda55e2d8eacf5fac937ba95025ef9 /docs/MODDING.md
parent32c20b6ebebc9ade899b317c37dd509f97a5576f (diff)
fix: readme typos (#4768)
* fix: change complier to compiler * fix: repeated the
Diffstat (limited to 'docs/MODDING.md')
-rw-r--r--docs/MODDING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/MODDING.md b/docs/MODDING.md
index 75293b64a..1f4f4b607 100644
--- a/docs/MODDING.md
+++ b/docs/MODDING.md
@@ -59,7 +59,7 @@ if (IS_DAY || gTimeIncrement >= 0x190) {
}
```
-We can make a quick change to this code to verify this is indeed what we are looking for, lets multiply the the gTimeIncrement by 10:
+We can make a quick change to this code to verify this is indeed what we are looking for, lets multiply the gTimeIncrement by 10:
```diff
if (IS_DAY || gTimeIncrement >= 0x190) {