Skip to content

Commit 8a726b1

Browse files
authored
Merge pull request #68 from kimochg/patch-1
fix(readme): missing comma
2 parents 6cfc616 + 0bc4bd7 commit 8a726b1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,9 @@ This function will pluralize or singularlize a String appropriately based on an
184184

185185
var inflection = require( 'inflection' );
186186

187-
inflection.inflect( 'people' 1 ); // === 'person'
188-
inflection.inflect( 'octopi' 1 ); // === 'octopus'
189-
inflection.inflect( 'Hats' 1 ); // === 'Hat'
187+
inflection.inflect( 'people', 1 ); // === 'person'
188+
inflection.inflect( 'octopi', 1 ); // === 'octopus'
189+
inflection.inflect( 'Hats', 1 ); // === 'Hat'
190190
inflection.inflect( 'guys', 1 , 'person' ); // === 'person'
191191
inflection.inflect( 'person', 2 ); // === 'people'
192192
inflection.inflect( 'octopus', 2 ); // === 'octopi'

0 commit comments

Comments
 (0)