[patch #7514] Bug in perlop regex explination
Casey West [Mon, 28 Apr 2003 16:20:43 +0000 (16:20 +0000)]
Message-Id: <20030428172206.GK62281@geeknest.com>

p4raw-id: //depot/perl@19364

pod/perlop.pod

index cd36ec1..94c930f 100644 (file)
@@ -1666,7 +1666,7 @@ alphanumeric char, as in:
 
 In the RE above, which is intentionally obfuscated for illustration, the
 delimiter is C<m>, the modifier is C<mx>, and after backslash-removal the
-RE is the same as for C<m/ ^ a s* b /mx>).  There's more than one 
+RE is the same as for C<m/ ^ a \s* b /mx>.  There's more than one 
 reason you're encouraged to restrict your delimiters to non-alphanumeric,
 non-whitespace choices.