Skip to content

Commit

Permalink
Merge pull request #6 from nigelsmith/master
Browse files Browse the repository at this point in the history
Fix incorrect pluralisation of 'human' - add human/humans to tests
  • Loading branch information
jpvanhal committed May 3, 2015
2 parents 4f561a2 + d85ee5d commit 619d29f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions inflection.py
Expand Up @@ -415,6 +415,7 @@ def underscore(word):

_irregular('person', 'people')
_irregular('man', 'men')
_irregular('human', 'humans')
_irregular('child', 'children')
_irregular('sex', 'sexes')
_irregular('move', 'moves')
Expand Down
1 change: 1 addition & 0 deletions test_inflection.py
Expand Up @@ -106,6 +106,7 @@

("cow", "kine"),
("database", "databases"),
("human", "humans")
)

CAMEL_TO_UNDERSCORE = (
Expand Down

0 comments on commit 619d29f

Please sign in to comment.