fix methods and action names to match the next example (which is supposed to be equiv...
Karen Etheridge [Tue, 13 Aug 2013 21:46:38 +0000 (14:46 -0700)]
lib/Catalyst/Manual/Intro.pod

index 998b6a1..a5acd72 100644 (file)
@@ -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;