From: Justin Hunter Date: Mon, 24 Aug 2009 19:28:19 +0000 (+0000) Subject: fix PathPart typo X-Git-Tag: v5.8005~110 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=614b484ca966389470528db752d8e73a1ac6ebdc fix PathPart typo --- diff --git a/lib/Catalyst/Manual/Tutorial/06_Authorization.pod b/lib/Catalyst/Manual/Tutorial/06_Authorization.pod index 1ecff82..3c3d4d9 100644 --- a/lib/Catalyst/Manual/Tutorial/06_Authorization.pod +++ b/lib/Catalyst/Manual/Tutorial/06_Authorization.pod @@ -320,7 +320,7 @@ C and add this method: =cut - sub error_noperms :Chained('/') :PathPath('error_noperms') :Args(0) { + sub error_noperms :Chained('/') :PathPart('error_noperms') :Args(0) { my ($self, $c) = @_; $c->stash->{template} = 'error_noperms.tt2';