You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently calling Singularize on a singular word returns null or an incorrect value (e.g. "Process".Singularize() => "Proces". Same goes for Pluralize on a plural word (e.g. "men".Pluralize() => "mens")
Ideally we need to implement IsPlural and/or IsSingular extension methods. This way we can fix this issue using the methods and the users of the framework can use the new methods to check a word without having to call Singularize or Pluralize on it.
The text was updated successfully, but these errors were encountered:
Currently calling
Singularize
on a singular word returns null or an incorrect value (e.g."Process".Singularize() => "Proces"
. Same goes forPluralize
on a plural word (e.g. "men".Pluralize() => "mens")Ideally we need to implement
IsPlural
and/orIsSingular
extension methods. This way we can fix this issue using the methods and the users of the framework can use the new methods to check a word without having to callSingularize
orPluralize
on it.The text was updated successfully, but these errors were encountered: