summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPhilip Dubé <159546+serprex@users.noreply.github.com>2026-07-24 15:19:36 +0000
committerGitHub <noreply@github.com>2026-07-24 15:19:36 +0000
commit581af474194877911f5290b581eb91d0d8ea6a8c (patch)
tree0431ab50546432b127dd5cd97458192b2ccd66fc /docs
parentda4e6dc3321bda48a313b162261156580bc376f4 (diff)
Fix typos (#6978)
Diffstat (limited to 'docs')
-rw-r--r--docs/MODDING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/MODDING.md b/docs/MODDING.md
index d410a0d06..089df0d5e 100644
--- a/docs/MODDING.md
+++ b/docs/MODDING.md
@@ -72,7 +72,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 gTimeIncrement by 10:
+We can make a quick change to this code to verify this is indeed what we are looking for, let's multiply the gTimeIncrement by 10:
```diff
if (IS_DAY || gTimeIncrement >= 0x190) {