diff options
-rw-r--r-- | Add-a-new-Pokémon.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Add-a-new-Pokémon.md b/Add-a-new-Pokémon.md index 58d9137..393cd6a 100644 --- a/Add-a-new-Pokémon.md +++ b/Add-a-new-Pokémon.md @@ -83,7 +83,7 @@ Edit [data/pokemon/names.asm](../blob/master/data/pokemon/names.asm): All the names are exactly 10 characters long, with "@" as padding. Names that are 10 characters long anyway, like "CHARMELEON", don't have any padding. -(Aside: if you make names lowercase, be careful—going from "FARFETCH'D" to "Farfetch'd" will lower the character count by 1 since "'d" is a single character, so that would need to become "Farfetch'd@".) +(Aside: if you make names lowercase, be careful—going from "FARFETCH'D" to "Farfetch'd" will lower the character count by 1 since `'d` is a single character, so that would need to become `"Farfetch'd@"`.) ## 3. Define its base data |