Fix typos: s/CORE/CODE/, s/mdoule/module/
Mark Stosberg [Fri, 2 Apr 2010 01:20:23 +0000 (21:20 -0400)]
lib/Plack/Middleware/Session.pm
lib/Plack/Session/Store/File.pm

index e5ed2b3..bb2d7f7 100644 (file)
@@ -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
 
index 932cc22..95dcd41 100644 (file)
@@ -121,14 +121,14 @@ is provided then "/tmp" is used.
 
 =item B<serializer>
 
-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<deserializer>
 
-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.