From 767e7d47ae93e56f59f866504cf41953b415b73a Mon Sep 17 00:00:00 2001 From: Noitidart Date: Sun, 2 Aug 2020 04:50:29 -0700 Subject: [PATCH] Fix plural of "they" to "he" Fixes #154 --- pluralize.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pluralize.js b/pluralize.js index 1829fc8..253c8b8 100644 --- a/pluralize.js +++ b/pluralize.js @@ -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'],