summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorAristotle Pagaltzis <pagaltzis@gmx.de>2012-05-23 18:12:43 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-05-23 18:12:43 -0700
commit1e4aa4a587074e54fbb78449b8d9262e220217ca (patch)
tree272e0a46fa354ab2e7508a4f851272459f9472a3 /pod
parent21361d0729743e699b2954b542f05a2e4eabd980 (diff)
downloadperl-1e4aa4a587074e54fbb78449b8d9262e220217ca.tar.gz
[perl #112522] Mildly incorrect wording in "perldoc perlre"
Diffstat (limited to 'pod')
-rw-r--r--pod/perlre.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod
index b69c359006..9c5c3ad568 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -31,8 +31,8 @@ L<perlop/"Gory details of parsing quoted constructs">.
X</m> X<regex, multiline> X<regexp, multiline> X<regular expression, multiline>
Treat string as multiple lines. That is, change "^" and "$" from matching
-the start or end of the string to matching the start or end of any
-line anywhere within the string.
+the start or end of line only at the left and right ends of the string to
+matching them anywhere within the string.
=item s
X</s> X<regex, single-line> X<regexp, single-line>