From: Karl Williamson Date: Fri, 26 Feb 2010 01:39:29 +0000 (-0700) Subject: Quote a code example X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=34d67d80e1087ea2672d0cbee6b357273a35ea6f;p=p5sagit%2Fp5-mst-13.2.git Quote a code example --- diff --git a/pod/perlre.pod b/pod/perlre.pod index 7480668..2b46f1f 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -41,7 +41,7 @@ X Treat string as single line. That is, change "." to match any character whatsoever, even a newline, which normally it would not match. -Used together, as /ms, they let the "." match any character whatsoever, +Used together, as C, they let the "." match any character whatsoever, while still allowing "^" and "$" to match, respectively, just after and just before newlines within the string.