summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/BUILDING.md2
-rw-r--r--docs/MODDING.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/BUILDING.md b/docs/BUILDING.md
index 73379533f..963037465 100644
--- a/docs/BUILDING.md
+++ b/docs/BUILDING.md
@@ -3,7 +3,7 @@
## Windows
Requires:
- * At least 8GB of RAM (machines with 4GB have seen complier failures)
+ * At least 8GB of RAM (machines with 4GB have seen compiler failures)
* Visual Studio 2022 Community Edition with the C++ feature set
* One of the Windows SDKs that comes with Visual Studio, for example the current Windows 10 version 10.0.19041.0
* The `MSVC v143 - VS 2022 C++ build tools` component of Visual Studio
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) {