summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authormike8699 <mikebuntu68@gmail.com>2025-01-01 21:19:30 -0500
committermike8699 <mikebuntu68@gmail.com>2025-01-01 21:19:30 -0500
commit83e058a8a11e9764d5674100a77310b5f10fee7c (patch)
treee5995985f1fd300efe96593436a4d0c49ec59fa6 /docs
parent88c72f047043dc57617bce1a979a534ababeb134 (diff)
Run `pre-commit` formatting
Diffstat (limited to 'docs')
-rw-r--r--docs/actors.md4
-rw-r--r--docs/build_system.md2
-rw-r--r--docs/decompiling.md4
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/actors.md b/docs/actors.md
index d0efbc13..49300936 100644
--- a/docs/actors.md
+++ b/docs/actors.md
@@ -253,12 +253,12 @@ translations. Feel free to contribute to this list!
`EVIC` | Event Icon | Exclamation point icon on the map screen
`EQAR` | Earthquake Area
`FMSG` | Freestanding? Message | Freestanding textbox
-`ITGE` | Item Generator | Spawns an item, such as a small key
+`ITGE` | Item Generator | Spawns an item, such as a small key
`NCMA` | NPC Conversation Message?
`NCM2` | NPC Conversation Message 2?
`NMSG` | Navi Message | Starts dialogue with the fairy
`RMTG` | Room Tag | Midpoint of small rooms, such as houses
-`SWDS` |
+`SWDS` |
`SWOB` | Switch Object | Causes an event when one or more switches are active
`VOCA` | Voice Area | Listens for microphone volume while Link is in the area
`WNAR` | Wind Area | Creates gusts of wind that push Link
diff --git a/docs/build_system.md b/docs/build_system.md
index 8b40d3ab..82d32c6b 100644
--- a/docs/build_system.md
+++ b/docs/build_system.md
@@ -32,7 +32,7 @@ files to the project.
Each `delinks.txt` file belongs to one module, such as the ARM9 program, the ITCM, the DTCM or an overlay.
> [!NOTE]
-> For interested readers:
+> For interested readers:
> All modules are loaded into RAM. This is different from the DS predecessor, the Game Boy Advance (GBA), in which all code was
> simply on the ROM at all times. As a result, the GBA's RAM only consisted of variable data.
>
diff --git a/docs/decompiling.md b/docs/decompiling.md
index c572e6f2..6eb32c39 100644
--- a/docs/decompiling.md
+++ b/docs/decompiling.md
@@ -24,9 +24,9 @@ We use the object diffing tool [`objdiff`](https://github.com/encounter/objdiff)
1. [Download the latest release.](https://github.com/encounter/objdiff/releases/latest)
1. Run `configure.py <eur|usa>` and `ninja` to generate `objdiff.json` in the repository root.
1. In `objdiff`, set the project directory to the repository root.
-1. Select your source file in the left sidebar:
+1. Select your source file in the left sidebar:
![List of objects in objdiff](images/objdiff_objects.png)
-5. See the list of functions and data to decompile:
+5. See the list of functions and data to decompile:
![List of symbols in objdiff](images/objdiff_symbols.png)
> [!NOTE]