From: Rafael Garcia-Suarez Date: Mon, 7 Jul 2003 18:58:47 +0000 (+0000) Subject: Regexp bug in the docs, spotted by Enache's eagle eyes. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=82d4537cdeff77e7ba16a40dc7517efc8eb83ce2;p=p5sagit%2Fp5-mst-13.2.git Regexp bug in the docs, spotted by Enache's eagle eyes. p4raw-id: //depot/perl@20063 --- diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 608c0cd..5ddd7e1 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -636,7 +636,7 @@ with C). 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