summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/acronyms.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/acronyms.pl b/scripts/acronyms.pl
index 73cb817..7bb187f 100755
--- a/scripts/acronyms.pl
+++ b/scripts/acronyms.pl
@@ -84,7 +84,7 @@ sub get_station_by_name {
$nname = normalize($nname);
$actual_match = firstval { $nname eq normalize(lc($_->[1])) } @stations;
if ($actual_match) {
- return $actual_match;
+ return ($actual_match);
}
return ( grep { $_->[1] =~ m{$name}i } @stations );