Skip to content
Snippets Groups Projects
Commit fa8720d6 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Further documentation fixes

parent 12d0fecd
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ Travel::Routing::DE::VRR::Exception - Travel::Routing::DE::VRR Exceptions ...@@ -4,7 +4,7 @@ Travel::Routing::DE::VRR::Exception - Travel::Routing::DE::VRR Exceptions
=head1 DESCRIPTION =head1 DESCRIPTION
All Exceptions throws by Travel::Routing::DE::VRR::Exception are All Exceptions throws by Travel::Routing::DE::VRR are
Travel::Routing::DE::VRR::Exception objects created by Exception::Class(3pm). Travel::Routing::DE::VRR::Exception objects created by Exception::Class(3pm).
See Exception::Class::Base(3pm) for their common methods. See Exception::Class::Base(3pm) for their common methods.
......
...@@ -39,8 +39,8 @@ Travel::Routing::DE::VRR::Route - Single route (connection) between two points ...@@ -39,8 +39,8 @@ Travel::Routing::DE::VRR::Route - Single route (connection) between two points
=head1 SYNOPSIS =head1 SYNOPSIS
for my $route ( $efa->routes() ) { for my $route ( $efa->routes ) {
for my $part ( $route->parts() ) { for my $part ( $route->parts ) {
# $part is a Travel::Routing::DE::VRR::Route::Part object # $part is a Travel::Routing::DE::VRR::Route::Part object
} }
} }
......
...@@ -38,10 +38,10 @@ points, without interchanges ...@@ -38,10 +38,10 @@ points, without interchanges
=head1 SYNOPSIS =head1 SYNOPSIS
for my $part ( $route->parts() ) { for my $part ( $route->parts ) {
if ( $part->extra() ) { if ( $part->extra ) {
say join( "\n", $part->extra() ); say join( "\n", $part->extra );
} }
printf( printf(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment