X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FWeb%2FSimple.pm;h=2d852234ac2c6f2e3f982261f116e1cb54227837;hb=8b8f7d449a28026ea60432cd4fd13a6f1d2857e0;hp=95dfac269425ec1177d69a69440226d0ca061c88;hpb=3ac40857720f4b26a054251ddc55cb0e46438ac8;p=catagits%2FWeb-Simple.git diff --git a/lib/Web/Simple.pm b/lib/Web/Simple.pm index 95dfac2..2d85223 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.031'; +our $VERSION = '0.032'; 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 {