summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-08-07 09:41:31 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-08-07 09:41:31 +0000
commit64c5a5665d9d2e73526d93f8e1b8e0488ead3228 (patch)
tree659d5ed3fd19c29f60410f6955f81dfd8c244573 /pod/perlop.pod
parent021db424163d574093ff658e9606a6f31942189d (diff)
downloadperl-64c5a5665d9d2e73526d93f8e1b8e0488ead3228.tar.gz
Documentation updates for new regexp features
p4raw-id: //depot/perl@31683
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index e02ad41f50..355e8aab4b 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -1056,9 +1056,9 @@ This operator quotes (and possibly compiles) its I<STRING> as a regular
expression. I<STRING> is interpolated the same way as I<PATTERN>
in C<m/PATTERN/>. If "'" is used as the delimiter, no interpolation
is done. Returns a Perl value which may be used instead of the
-corresponding C</STRING/imosx> expression. The returned value is a
+corresponding C</STRING/msixpo> expression. The returned value is a
normalized version of the original pattern. It magically differs from
-a string containing the same characters: ref(qr/x/) returns "Regexp",
+a string containing the same characters: C<ref(qr/x/)> returns "Regexp",
even though dereferencing the result returns undef.
For example,