summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-07-04 16:29:46 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2018-07-04 16:29:46 -0400
commitfeb15b39df647c377722fb7920dc662c929351d1 (patch)
treef58566996747f00c51081bce33b9bf5bd51dd459
parent3b2f84e061545190d58d05d1ea12e0de64794868 (diff)
Phrasing
-rw-r--r--Correct-grammar-for-plural-trainers-like-Twins.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Correct-grammar-for-plural-trainers-like-Twins.md b/Correct-grammar-for-plural-trainers-like-Twins.md
index 190b70f..2fd15f6 100644
--- a/Correct-grammar-for-plural-trainers-like-Twins.md
+++ b/Correct-grammar-for-plural-trainers-like-Twins.md
@@ -66,7 +66,7 @@ Edit [data/text/battle.asm](../blob/master/data/text/battle.asm):
+ done
```
-(Yes, while looking through the file I found a third phrase using "<ENEMY>" that needed a different plural form. All the rest are okay as-is.)
+(Yes, while looking through the file I found a third phrase using "&lt;ENEMY&gt;" that needed a different plural form. All the rest are okay as-is.)
## 2. Define plural trainers
@@ -112,7 +112,7 @@ IsPluralTrainer:
ret
```
-(We're not bothering to use the `IsGymLeader` method of calling `IsInArray`, because it's overkill with just a few items to check, let alone one item.)
+We're not using the more complicated `IsGymLeaderCommon` method, which calls `IsInArray`, because it's overkill without a long list of items to check.
Now we just have to find where those three original phrases are used, and call `IsPluralTrainer` to decide whether to use the new phrases instead.