]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole.pm
A few micro-edits, esp. wishlist.txt
[maypole.git] / lib / Maypole.pm
index b84360cc0262e9e4e77dc6ebf41b05f8d876fccc..9f1af35366433899221fa6cf1fe191eb42dd8cfa 100644 (file)
@@ -210,7 +210,7 @@ __PACKAGE__->init_done(0);
 
 As a framework, Maypole provides a number of B<hooks> - methods that are
 intended to be overridden. Some of these methods come with useful default
-behaviour, others do nothing by default. Likely hooks include:
+behaviour, others do nothing by default. Hooks include:
 
     Class methods
     -------------
@@ -431,7 +431,8 @@ sub handler : method
     $self->get_request($req);
     $self->parse_location;
     
-    # hook useful for declining static requests e.g. images
+    # hook useful for declining static requests e.g. images, or perhaps for 
+    # sanitizing request parameters
     my $status = $self->start_request_hook;
     return $status unless $status == Maypole::Constants::OK();