correct POD on ** match
Mateu X Hunter [Tue, 13 Dec 2011 23:30:05 +0000 (16:30 -0700)]
lib/Web/Simple.pm

index 6b84c8f..db83535 100644 (file)
@@ -322,9 +322,9 @@ also match more than one part:
 and so on. To match an arbitrary number of parts, use -
 
   sub (/page/**) {
+    my ($self, $match) = @_;
 
-This will result in an element per /-separated part so matched. Note that
-you can do
+This will result in a single element for the entire match. Note that you can do
 
   sub (/page/**/edit) {