X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FRouteMatching.pod;h=e5f567c77d324d6da4d343d5c22e3dd84521a0ea;hb=9d1f95081b5502041ce6597d67a7aa3c23dc8e08;hp=06df60186af73e1310e93a760fafea22c465123a;hpb=2234c98aef4d0c6b320482efc02c308c17d2670d;p=catagits%2FCatalyst-Runtime.git 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) = @_; }