diff options
author | Clinton Pierce <cpierce1@ford.com> | 1999-07-21 12:45:31 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-04 02:50:08 +0000 |
commit | f37986196860fb6f06ab4ac2207a863fdb83f1fe (patch) | |
tree | d992b638d2d81fdb0f1ba81bfc82b79127094529 /pod/perlop.pod | |
parent | cea89e206a8a50eb6e9ed587814e76e98eb0297e (diff) | |
download | perl-f37986196860fb6f06ab4ac2207a863fdb83f1fe.tar.gz |
[ID 19990721.004] Documentation bug in perlfunc
Message-Id: <199907212049.QAA12875@mailfw3.ford.com>
Fix by Stephen Potter (visible in the bug db but not in p5p?)
p4raw-id: //depot/perl@6517
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 3c84e60801..0f83ed17b7 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, "%" give you direct access +Note than 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. |