diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-11-29 18:57:32 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-11-29 18:57:32 +0100 |
commit | b5eb02bb495287175556829a7b89ecc51dd8605e (patch) | |
tree | e6b00c7ef1d4c66594d8709c298763a9f11a9044 /lib/Travel/Routing/DE/VRR/Route | |
parent | c4cc115ec6434b7245a710ecba99dc11d16ae1d1 (diff) |
Route/Part.pm: Fix typo in via
Diffstat (limited to 'lib/Travel/Routing/DE/VRR/Route')
-rw-r--r-- | lib/Travel/Routing/DE/VRR/Route/Part.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travel/Routing/DE/VRR/Route/Part.pm b/lib/Travel/Routing/DE/VRR/Route/Part.pm index 9c35196..ae5e916 100644 --- a/lib/Travel/Routing/DE/VRR/Route/Part.pm +++ b/lib/Travel/Routing/DE/VRR/Route/Part.pm @@ -47,7 +47,7 @@ sub extra { sub via { my ($self) = @_; - return ${ $self->{via} // [] }; + return @{ $self->{via} // [] }; } 1; |