Dedent macro definition

This commit is contained in:
V1shvesh 2019-09-08 23:01:43 +05:30
parent fc4375a895
commit 7457ef8580

View File

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