From 62941ba5f647834cc3b2f460d04fb1cd58bc4217 Mon Sep 17 00:00:00 2001 From: Arman Gungor Date: Thu, 15 Feb 2024 19:48:30 -0800 Subject: [PATCH] Update Vocabularies.cs (#1244) --- src/Humanizer/Inflections/Vocabularies.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Humanizer/Inflections/Vocabularies.cs b/src/Humanizer/Inflections/Vocabularies.cs index 691a283f7..84294c8ef 100644 --- a/src/Humanizer/Inflections/Vocabularies.cs +++ b/src/Humanizer/Inflections/Vocabularies.cs @@ -86,12 +86,10 @@ private static Vocabulary BuildDefault() _default.AddIrregular("database", "databases"); _default.AddIrregular("zombie", "zombies"); _default.AddIrregular("personnel", "personnel"); - //Fix #789 _default.AddIrregular("cache", "caches"); - - //Fix 975 _default.AddIrregular("ex", "exes", matchEnding: false); _default.AddIrregular("is", "are", matchEnding: false); + _default.AddIrregular("was", "were", matchEnding: false); _default.AddIrregular("that", "those", matchEnding: false); _default.AddIrregular("this", "these", matchEnding: false); _default.AddIrregular("bus", "buses", matchEnding: false);