bump version
[catagits/Web-Simple.git] / lib / Web / Simple.pm
index 8685d39..2d85223 100644 (file)
@@ -5,7 +5,7 @@ use warnings::illegalproto ();
 use Moo ();
 use Web::Dispatch::Wrapper ();
 
-our $VERSION = '0.030';
+our $VERSION = '0.032';
 
 sub import {
   my ($class, $app_package) = @_;
@@ -526,7 +526,9 @@ The param spec is elements of one of the following forms:
 
 separated by the C<&> character. The arguments added to the request are
 one per non-C<:>/C<*> parameter (scalar for normal, arrayref for multiple),
-plus if any C<:>/C<*> specs exist a hashref containing those values.
+plus if any C<:>/C<*> specs exist a hashref containing those values. If a
+parameter has no value, i.e. appears as '?foo&', a value of 1 will be
+captured.
 
 Please note that if you specify a multiple type parameter match, you are
 ensured of getting an arrayref for the value, EVEN if the current incoming
@@ -569,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
@@ -604,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 {