Regexp bug in the docs, spotted by Enache's eagle eyes.
Rafael Garcia-Suarez [Mon, 7 Jul 2003 18:58:47 +0000 (18:58 +0000)]
p4raw-id: //depot/perl@20063

pod/perlsyn.pod

index 608c0cd..5ddd7e1 100644 (file)
@@ -636,7 +636,7 @@ with C<eval()>).  The syntax for this mechanism is the same as for most
 C preprocessors: it matches the regular expression
 
     # example: '# line 42 "new_filename.plx"'
-    /^#    \s*
+    /^\#   \s*
       line \s+ (\d+)   \s*
       (?:\s("?)([^"]+)\2)? \s*
      $/x