summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorAndreas König <a.koenig@mind.de>2002-12-11 22:31:14 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2002-12-12 20:40:22 +0000
commit0412d5267fa2300f66eb4eb554e2af493b5e5b33 (patch)
treea90877235e53b99fa781155a1b0dda86a8d6ed70 /pod
parentf14c76ed18fcf3fc609cea29294703220581a43a (diff)
downloadperl-0412d5267fa2300f66eb4eb554e2af493b5e5b33.tar.gz
[patch] typo in perlop
Message-ID: <m3k7igjo19.fsf@k242.linux.bogus> p4raw-id: //depot/perl@18300
Diffstat (limited to 'pod')
-rw-r--r--pod/perlop.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index f286c60363..46515e89a4 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -196,7 +196,7 @@ C<$a> minus the largest multiple of C<$b> that is not greater than
C<$a>. If C<$b> is negative, then C<$a % $b> is C<$a> minus the
smallest multiple of C<$b> that is not less than C<$a> (i.e. the
result will be less than or equal to zero).
-Note than when C<use integer> is in scope, "%" gives you direct access
+Note that when C<use integer> is in scope, "%" gives you direct access
to the modulus operator as implemented by your C compiler. This
operator is not as well defined for negative operands, but it will
execute faster.