Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed another typo in introspection example
  • Loading branch information
kraih committed Jul 31, 2014
1 parent e9d4a53 commit b03136f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Mojolicious/Guides/Routing.pod
Expand Up @@ -793,10 +793,10 @@ to list all available routes together with name and underlying regular
expressions.

$ ./myapp.pl routes -v
/foo/:name .... POST fooname ^/foo/([^/\.]+) ^(?:/?\.([^/]+))?$
/foo/:name .... POST fooname ^/foo/([^/\.]+) ^/?(?:\.([^/]+))?$
/bar B... * bar ^/bar
+/baz ...W GET baz ^/baz ^(?:/?\.([^/]+))?$
/yada .... * yada ^/yada ^(?:/?\.([^/]+))?$
+/baz ...W GET baz ^/baz ^/?(?:\.([^/]+))?$
/yada .... * yada ^/yada ^/?(?:\.([^/]+))?$

=head1 ADVANCED

Expand Down

0 comments on commit b03136f

Please sign in to comment.