-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation bug in perlfunc #218
Comments
From [email protected](Other pseudo-pragmas such as "integer" and "diagnostic" are listed.) |
From [Unknown Contact. See original ticket]Fixing old bugs.... (Other pseudo-pragmas such as "integer" and "diagnostic" are listed.) Recommended fix to bleadperl, also a grammatical error that just happened -spp Inline Patch--- perlfunc.orig Thu Jul 27 12:18:14 2000
+++ perlfunc.pod Thu Jul 27 12:19:59 2000
@@ -5396,8 +5396,9 @@
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);
--- perlop.orig Thu Jul 27 12:20:10 2000
+++ perlop.pod Thu Jul 27 12:21:29 2000
@@ -196,7 +196,7 @@
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. |
Migrated from rt.perl.org#1025 (status was 'resolved')
Searchable as RT1025$
The text was updated successfully, but these errors were encountered: