Quote a code example
authorKarl Williamson <khw@khw-desktop.(none)>
Fri, 26 Feb 2010 01:39:29 +0000 (18:39 -0700)
committerJesse Vincent <jesse@bestpractical.com>
Sun, 28 Feb 2010 20:15:20 +0000 (10:15 -1000)
pod/perlre.pod

index 7480668..2b46f1f 100644 (file)
@@ -41,7 +41,7 @@ X<regular expression, single-line>
 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</ms>, they let the "." match any character whatsoever,
 while still allowing "^" and "$" to match, respectively, just after
 and just before newlines within the string.