From: Martin Hasch Date: Mon, 28 Jan 2008 16:56:07 +0000 (-0800) Subject: [perl #50364] [PATCH] perlop.pod - misnomer in % operator documentation X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f88ee2835df514f44bb51184f4a3ed935a4b48d0;p=p5sagit%2Fp5-mst-13.2.git [perl #50364] [PATCH] perlop.pod - misnomer in % operator documentation From: mhasch@cpan.org (via RT) Message-ID: p4raw-id: //depot/perl@33257 --- diff --git a/pod/perlop.pod b/pod/perlop.pod index c592545..cf2cfc7 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -260,7 +260,7 @@ X<*> Binary "/" divides two numbers. X X -Binary "%" computes the modulus of two numbers. Given integer +Binary "%" computes the division remainder of two numbers. Given integer operands C<$a> and C<$b>: If C<$b> is positive, then C<$a % $b> is 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