adapt synopsis to be in line with the examples of the rest of the docs
Jos Boumans [Fri, 20 Mar 2009 14:34:36 +0000 (14:34 +0000)]
boldify the USER class is needed, not just the connection

lib/Catalyst/Authentication/Realm/SimpleDB.pm

index d4127e4..7438fe4 100644 (file)
@@ -63,8 +63,8 @@ Catalyst::Authentication::Realm::SimpleDB - A simplified Catalyst authentication
     __PACKAGE__->config->{'Plugin::Authentication'} = 
         {  
             default => {
-                class => 'SimpleDB',
-                user_model => 'MyApp::User'
+                class      => 'SimpleDB',
+                user_model => 'MyApp::Schema::Users',
             }
         }
 
@@ -105,7 +105,7 @@ Your user information is stored in the session once the user is authenticated.
 =back
 
 For the above usage, only one configuration option is necessary, 'user_model'.
-B<user_model> should contain the class name of your user class. See the
+B<user_model> should contain the B<class name of your user class>. See the
 L</PREPARATION> section for info on how to set up your database for use with
 this module.