Conversions: Minor code tidies

master
Rob Emery 2016-05-09 20:28:00 +01:00
parent 6775764f28
commit cd4bf80a17
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ sub looks_plural {
my $is_plural = 0;
foreach my $x (keys(%plurals)) {
$is_plural = 1 if lc $plurals{$x} eq lc $unit;
$is_plural = 1 if(lc($plurals{$x}) eq lc($unit));
}
return $is_plural;