From: Andreas König Date: Wed, 11 Dec 2002 21:31:14 +0000 (+0100) Subject: [patch] typo in perlop X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0412d5267fa2300f66eb4eb554e2af493b5e5b33;p=p5sagit%2Fp5-mst-13.2.git [patch] typo in perlop Message-ID: p4raw-id: //depot/perl@18300 --- diff --git a/pod/perlop.pod b/pod/perlop.pod index f286c60..46515e8 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 is in scope, "%" gives you direct access +Note that when C 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.