Skip to content

Commit

Permalink
Fix a couple instances of "Number man"
Browse files Browse the repository at this point in the history
Closes #38.
  • Loading branch information
domenic committed Aug 14, 2022
1 parent 5b3cb48 commit 307ee6d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/convert-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,9 @@ function fixCapitalization(xml, book) {
// ReSound's name is sometimes miscapitalized. The word is never used in a non-name context.
xml = xml.replace(/Resound/ug, "ReSound");

// Number Man's "man" is missing its capitalization a couple times.
xml = xml.replace(/Number man/ug, "Number Man");

// The Speedrunners team name is missing its capitalization a couple times.
xml = xml.replace(/speedrunners/ug, "Speedrunners");

Expand Down

0 comments on commit 307ee6d

Please sign in to comment.