From b5eb02bb495287175556829a7b89ecc51dd8605e Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Tue, 29 Nov 2011 18:57:32 +0100 Subject: Route/Part.pm: Fix typo in via --- lib/Travel/Routing/DE/VRR/Route/Part.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3