From: Mark Stosberg Date: Fri, 2 Apr 2010 01:20:23 +0000 (-0400) Subject: Fix typos: s/CORE/CODE/, s/mdoule/module/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FWeb-Session.git;a=commitdiff_plain;h=eb14af1e7cb1fccd12f708f4d257eb1c8413e9b7 Fix typos: s/CORE/CODE/, s/mdoule/module/ --- diff --git a/lib/Plack/Middleware/Session.pm b/lib/Plack/Middleware/Session.pm index e5ed2b3..bb2d7f7 100644 --- a/lib/Plack/Middleware/Session.pm +++ b/lib/Plack/Middleware/Session.pm @@ -199,7 +199,7 @@ you can use this noop module. =head1 OPTIONS -The following are options that can be passed to this mdoule. +The following are options that can be passed to this module. =over 4 diff --git a/lib/Plack/Session/Store/File.pm b/lib/Plack/Session/Store/File.pm index 932cc22..95dcd41 100644 --- a/lib/Plack/Session/Store/File.pm +++ b/lib/Plack/Session/Store/File.pm @@ -121,14 +121,14 @@ is provided then "/tmp" is used. =item B -This is a CORE reference that implements the serialization logic. +This is a CODE reference that implements the serialization logic. The CODE ref gets two arguments, the C<$value>, which is a HASH reference to be serialized, and the C<$file_path> to save it to. It is not expected to return anything. =item B -This is a CORE reference that implements the deserialization logic. +This is a CODE reference that implements the deserialization logic. The CODE ref gets one argument, the C<$file_path> to load the data from. It is expected to return a HASH reference.