Skip to content

Commit

Permalink
Safer
Browse files Browse the repository at this point in the history
  • Loading branch information
Refael Ackermann committed Sep 21, 2013
1 parent f3e8ba6 commit bc75c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ exports.pluralization = [
[/([m|l])ouse$/gi, '$1ice'],
[/(quiz)$/gi, '$1zes'],
[/s$/gi, 's'],
[/([^a-z])$/gi, '$1'],
[/([^a-z])$/, '$1'],
[/$/gi, 's']
];
var rules = exports.pluralization;
Expand Down

0 comments on commit bc75c5b

Please sign in to comment.