minor change to chapter 6 POD
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / 06_Authorization.pod
index d26a228..9302abb 100644 (file)
@@ -94,14 +94,10 @@ Edit C<lib/MyApp.pm> and add C<Authorization::Roles> to the list:
                     Session::State::Cookie
                     /;
 
-Once again (remain sharp, by now you should be getting the hang of things)
-include this additional plugin as a new dependency in the Makefile.PL file
-like this:
-
-    requires (
-        ...
-        'Catalyst::Plugin::Authorization::Roles' => '0',
-    );
+Once again, include this additional plugin as a new dependency in 
+the Makefile.PL file like this:
+
+    requires 'Catalyst::Plugin::Authorization::Roles';
 
 
 =head2 Add Role-Specific Logic to the "Book List" Template