doctrine / inflector

Doctrine Inflector is a small library that can perform string manipulations with regard to uppercase/lowercase and singular/plural forms of words.
https://www.doctrine-project.org/projects/inflector.html
MIT License
11.26k stars 137 forks source link

Correct singularization of locaux #259

Closed vdauchy closed 4 months ago

vdauchy commented 4 months ago

Currently,

echo $inflector->singularize('locaux'); returns locau.

This pull request changes that to local.

malarzm commented 4 months ago

Thanks @vdauchy!