summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorClinton Pierce <cpierce1@ford.com>1999-07-21 12:45:31 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-04 02:50:08 +0000
commitf37986196860fb6f06ab4ac2207a863fdb83f1fe (patch)
treed992b638d2d81fdb0f1ba81bfc82b79127094529 /pod
parentcea89e206a8a50eb6e9ed587814e76e98eb0297e (diff)
downloadperl-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')
-rw-r--r--pod/perlfunc.pod3
-rw-r--r--pod/perlop.pod2
2 files changed, 3 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index e19d341dad..09cd437723 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -5399,8 +5399,9 @@ called). Note that there is no comma after VERSION!
Because this is a wide-open interface, pragmas (compiler directives)
are also implemented this way. Currently implemented pragmas are:
- use integer;
+ use constant;
use diagnostics;
+ use integer;
use sigtrap qw(SEGV BUS);
use strict qw(subs vars refs);
use subs qw(afunc blurfl);
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.