summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-01-21 03:43:46 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-01-21 03:43:46 +0000
commit2decb4fb82e001e3c9671c57b61232c651a9c22c (patch)
tree1e1a8b22115eda10a3827a8a000282e1e843952e
parent0462a1aba5b172b84f9ab13f9649cb91af0560a6 (diff)
downloadperl-2decb4fb82e001e3c9671c57b61232c651a9c22c.tar.gz
typo fix
p4raw-id: //depot/perl@4829
-rw-r--r--pod/perlop.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index 547ee5328e..a7553dff42 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -169,11 +169,11 @@ search or modify the string $_ by default. This operator makes that kind
of operation work on some other string. The right argument is a search
pattern, substitution, or transliteration. The left argument is what is
supposed to be searched, substituted, or transliterated instead of the default
-$_. The return value indicates the success of the operation. (If the
+$_. The return value indicates the success of the operation. If the
right argument is an expression rather than a search pattern,
substitution, or transliteration, it is interpreted as a search pattern at run
-time. This can be is less efficient than an explicit search, because the
-pattern must be compiled every time the expression is evaluated).
+time. This can be less efficient than an explicit search, because the
+pattern must be compiled every time the expression is evaluated.
Binary "!~" is just like "=~" except the return value is negated in
the logical sense.