From: John Napiorkowski Date: Wed, 22 Jul 2015 17:22:27 +0000 (-0500) Subject: Merge branch 'dim0xff-fix/RouteMatching.pod' into orpington X-Git-Tag: 5.90094~4^2~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=72ff6cffc45d5298c906ad136e3e8cc765c7ee11;hp=f176d1c8ec4d1b119ca573a9c2e2aa5fc3a3324d Merge branch 'dim0xff-fix/RouteMatching.pod' into orpington --- diff --git a/lib/Catalyst/RouteMatching.pod b/lib/Catalyst/RouteMatching.pod index 06df601..e5f567c 100644 --- a/lib/Catalyst/RouteMatching.pod +++ b/lib/Catalyst/RouteMatching.pod @@ -87,10 +87,11 @@ is a simple example: use Moose; use MooseX::MethodAttributes; + use MooseX::Types::Moose qw(Int); extends 'Catalyst::Controller'; - sub find :Path('') Args('Int') { + sub find :Path('') Args(Int) { my ($self, $c, $int) = @_; }