typo fixing
Jesse Sheidlower [Tue, 5 Aug 2008 00:32:19 +0000 (00:32 +0000)]
lib/Catalyst/Authentication/Store/DBIx/Class.pm

index 8c20100..58e185c 100644 (file)
@@ -243,7 +243,7 @@ you should call $c->update_user_in_session() as well.
 =item store_user_class
 
 This allows you to override the authentication user class that the 
-DBIx::Class store module uses to perform it's work.  Most of the
+DBIx::Class store module uses to perform its work.  Most of the
 work done in this module is actually done by the user class, 
 L<Catalyst::Authentication::Store::DBIx::Class::User>, so
 overriding this doesn't make much sense unless you are using your
@@ -264,7 +264,7 @@ Searchargs and Resultset.
 
 =head2 Simple Retrieval 
 
-The first, and most common, method is simple retrieval. As it's name implies
+The first, and most common, method is simple retrieval. As its name implies
 simple retrieval allows you to simply to provide the column => value pairs
 that should be used to locate the user in question. An example of this usage
 is below:
@@ -285,7 +285,7 @@ the DBIx::Class' search() routine, so in most cases, you can use DBIx::Class
 syntax to retrieve the user according to whatever rules you have.
 
 NOTE: Because the password in most cases is encrypted - it is not used
-directly but it's encryption and comparison with the value provided is usually
+directly but its encryption and comparison with the value provided is usually
 handled by the Password Credential. Part of the Password Credential's behavior
 is to remove the password argument from the authinfo that is passed to the
 storage module. See L<Catalyst::Authentication::Credential::Password>.
@@ -321,8 +321,8 @@ DBIx::Class authentication store. Reasons to do this are to avoid credential
 modification of the authinfo hash, or to avoid overlap between credential and
 store key names. It's a good idea to avoid using it in this way unless you are
 sure you have an overlap/modification issue. However, the two advanced
-retrieval methods, B<searchargs> and B<resultset>, require it's use, as they 
-are only processed as part of the 'dbix_class' hash
+retrieval methods, B<searchargs> and B<resultset>, require its use, as they 
+are only processed as part of the 'dbix_class' hash.
 
 =over 4