fix some typos and spelling mistakes
[catagits/Web-Session.git] / lib / Plack / Session / Store / DBI.pm
index e8c6ace..0f09326 100644 (file)
@@ -7,7 +7,6 @@ use warnings;
 our $VERSION   = '0.10';
 our $AUTHORITY = 'cpan:STEVAN';
 
-use DBI;
 use MIME::Base64 ();
 use Storable ();
 
@@ -132,7 +131,7 @@ Plack::Session::Store::DBI - DBI-based session store
 
   builder {
       enable 'Session',
-          store => Plack::Session::Store::File->new(
+          store => Plack::Session::Store::DBI->new(
               dbh => DBI->connect( @connect_args )
               # YAML takes it's args the opposite order
               serializer   => sub { YAML::DumpFile( reverse @_ ) },
@@ -148,7 +147,7 @@ default it will use L<Storable> and L<MIME::Base64> to serialize and
 deserialize the data, but this can be configured easily. 
 
 This is a subclass of L<Plack::Session::Store> and implements
-it's full interface.
+its full interface.
 
 =head1 SESSION TABLE SCHEMA