summaryrefslogtreecommitdiff
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
parent32c20b6ebebc9ade899b317c37dd509f97a5576f (diff)
fix: readme typos (#4768)
* fix: change complier to compiler * fix: repeated the
-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) {