Subject: | Catalyst-Manual-Intro document error |
http://search.cpan.org/~hkclark/Catalyst-Manual-
5.8004/lib/Catalyst/Manual/Intro.pod#Actions
description about Global action HAS AN ERROR.
Root-level (:Global)
package MyApp::Controller::Foo;
sub foo : Global { }
Matches http://localhost:3000/foo - that is, the action is mapped
directly to the controller namespace, ignoring the function name.
I think it should is :
Root-level (:Global)
package MyApp::Controller::Foo;
sub foo : Global { }
Matches http://localhost:3000/foo - that is, the action is mapped
directly to the function name, ignoring the controller namespace.