Subject: | Minor documentation/POD bug |
Catalyst-Runtime-5.80004/lib/Catalyst.pm
Example code in POD for uri_for() has extra dereference arrow:
This:
# For the Foo action in the Bar controller
$c->uri_for($c->controller->('Bar')->action_for('Foo'), $c->req->captures);
Should be:
# For the Foo action in the Bar controller
$c->uri_for($c->controller('Bar')->action_for('Foo'), $c->req->captures);