We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6cfc616 + 0bc4bd7 commit 8a726b1Copy full SHA for 8a726b1
1 file changed
Readme.md
@@ -184,9 +184,9 @@ This function will pluralize or singularlize a String appropriately based on an
184
185
var inflection = require( 'inflection' );
186
187
- inflection.inflect( 'people' 1 ); // === 'person'
188
- inflection.inflect( 'octopi' 1 ); // === 'octopus'
189
- inflection.inflect( 'Hats' 1 ); // === 'Hat'
+ inflection.inflect( 'people', 1 ); // === 'person'
+ inflection.inflect( 'octopi', 1 ); // === 'octopus'
+ inflection.inflect( 'Hats', 1 ); // === 'Hat'
190
inflection.inflect( 'guys', 1 , 'person' ); // === 'person'
191
inflection.inflect( 'person', 2 ); // === 'people'
192
inflection.inflect( 'octopus', 2 ); // === 'octopi'
0 commit comments