1
Fork 0

use American spelling for pluralize!

This commit is contained in:
Andy Russell 2019-11-05 15:10:24 -05:00
parent 1423bec54c
commit ad550b8ef3
No known key found for this signature in database
GPG key ID: BE2221033EDBC374
21 changed files with 57 additions and 57 deletions

View file

@ -1027,7 +1027,7 @@ impl Level {
}
#[macro_export]
macro_rules! pluralise {
macro_rules! pluralize {
($x:expr) => {
if $x != 1 { "s" } else { "" }
};