From: Karen Etheridge Date: Tue, 13 Aug 2013 21:46:38 +0000 (-0700) Subject: fix methods and action names to match the next example (which is supposed to be equiv... X-Git-Tag: v5.9008~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=be3349e1a2966ee8abc15c1b9a168a3c70125ccb fix methods and action names to match the next example (which is supposed to be equivalent) --- diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 998b6a1..a5acd72 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -482,9 +482,9 @@ application. use base qw/Catalyst::Controller/; - sub login : Path("login") { } + sub sign_in : Path("sign-in") { } sub new_password : Path("new-password") { } - sub logout : Path("logout") { } + sub sign_out : Path("sign-out") { } package MyApp::Controller::Catalog;