Skip to content

Commit 367080a

Browse files
authored
Merge pull request #67 from eseliger/patch-1
2 parents 125b337 + 0e33d2d commit 367080a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/inflection.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@
115115
'gold',
116116
'golf',
117117
'gossip',
118-
'grammar',
119118
// 'grass',
120119
'gratitude',
121120
'grief',

test/inflection.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ describe( 'test .pluralize', function (){
5656
inflection.pluralize( 'genus' ).should.equal( 'genera' );
5757
inflection.pluralize( 'genera' ).should.equal( 'genera' );
5858
inflection.pluralize( 'bonus' ).should.equal( 'bonuses' );
59+
inflection.pluralize( 'grammar' ).should.equal( 'grammars' );
5960
});
6061
});
6162

@@ -103,7 +104,7 @@ describe( 'test .singularize', function (){
103104
inflection.singularize( 'genus' ).should.equal( 'genus' );
104105
inflection.singularize( 'minus' ).should.equal( 'minus' );
105106
inflection.singularize( 'bonuses' ).should.equal( 'bonus' );
106-
107+
inflection.singularize( 'grammars' ).should.equal( 'grammar' );
107108
});
108109
});
109110

0 commit comments

Comments
 (0)