X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FWeb%2FSimple.pm;h=fd3913a4f2f7fe68b4addce81d3fb8b449f01f36;hb=75c8f1da277fedcb698a7e5d31f3de3813306e6a;hp=134c7aedc4dae62d27bb98834ae23caaad20debd;hpb=6f0e017fa30d4f1414f883acdc4d7a824a32c93b;p=catagits%2FWeb-Simple.git diff --git a/lib/Web/Simple.pm b/lib/Web/Simple.pm index 134c7ae..fd3913a 100644 --- a/lib/Web/Simple.pm +++ b/lib/Web/Simple.pm @@ -5,7 +5,7 @@ use warnings::illegalproto (); use Moo (); use Web::Dispatch::Wrapper (); -our $VERSION = '0.030'; +our $VERSION = '0.033'; sub import { my ($class, $app_package) = @_; @@ -571,7 +571,7 @@ the 'coffee' parameter. Note, in the case where you combine arrayref, single parameter and named hashref style, the arrayref and single parameters will appear in C<@_> in the -order you defined them in the protoype, but all hashrefs will merge into a +order you defined them in the prototype, but all hashrefs will merge into a single C<$params>, as in the example above. =head3 Upload matches @@ -606,7 +606,7 @@ Matches may be combined with the + character - e.g. 'GET + /user/*' => sub { -to create an AND match. They may also be combined withe the | character - e.g. +to create an AND match. They may also be combined with the | character - e.g. 'GET|POST' => sub {