Skip to content

Commit

Permalink
Fix plural of "they" to "he"
Browse files Browse the repository at this point in the history
  • Loading branch information
Noitidart committed Aug 2, 2020
1 parent cba2fef commit 767e7d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pluralize.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,9 @@
// Pronouns.
['I', 'we'],
['me', 'us'],
['he', 'they'],
['she', 'they'],
// "he" should go 2nd, so that pluralize('they', 1) gives "he"
['he', 'they'],
['them', 'them'],
['myself', 'ourselves'],
['yourself', 'yourselves'],
Expand Down

0 comments on commit 767e7d4

Please sign in to comment.