Skip to content

Commit

Permalink
the backslash is not important
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 18, 2015
1 parent 9ba62ec commit f627e46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Mojolicious/Guides/Routing.pod
Expand Up @@ -787,10 +787,10 @@ to list all available routes together with name and underlying regular
expressions.

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

=head1 ADVANCED

Expand Down

0 comments on commit f627e46

Please sign in to comment.