spelling mistakes (RT#118540)
gregor herrmann [Sat, 29 Oct 2016 12:59:14 +0000 (05:59 -0700)]
lib/Web/Simple.pm

index 95dfac2..7adf003 100644 (file)
@@ -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 {