Skip to content

Commit

Permalink
fixed bug with pluralizing a word.
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultz committed Mar 4, 2011
1 parent 035f16a commit f13166f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mesh/core/inflection/Inflector.as
Expand Up @@ -118,7 +118,7 @@ package mesh.core.inflection
if (rule is String) {
_ignored.removeAll([rule, replacement]);
}
_plurals.push(rule, replacement);
_plurals.unshift(rule, replacement);
}

/**
Expand Down

0 comments on commit f13166f

Please sign in to comment.