[ID 19990721.004] Documentation bug in perlfunc
Clinton Pierce [Wed, 21 Jul 1999 16:45:31 +0000 (12:45 -0400)]
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

pod/perlfunc.pod
pod/perlop.pod

index e19d341..09cd437 100644 (file)
@@ -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);
index 3c84e60..0f83ed1 100644 (file)
@@ -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.