Skip Menu |

This queue is for tickets about the Math-GMP CPAN distribution.

Report information
The Basics
Id: 54776
Status: resolved
Priority: 0/
Queue: Math-GMP

People
Owner: Nobody in particular
Requestors: SHLOMIF [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 2.06
Fixed in: (no value)



Subject: [PATCH] Correct "it's" to "its" where appropriate
The attached patch corrects "it's"es to "its"es. Please apply it.
Subject: Math-GMP-its-correction.patch
--- lib/Math/GMP.pm.orig 2010-02-19 00:07:53.743428420 +0200 +++ lib/Math/GMP.pm 2010-02-19 00:08:05.626178680 +0200 @@ -328,7 +328,7 @@ $x = Math::GMP->new(6); $x->band(3); # 0b110 & 0b11 = 1 -Calculates the bit-wise AND of it's two arguments and modifies the first +Calculates the bit-wise AND of its two arguments and modifies the first argument. =head2 bxor @@ -336,7 +336,7 @@ $x = Math::GMP->new(6); $x->bxor(3); # 0b110 & 0b11 = 0b101 -Calculates the bit-wise XOR of it's two arguments and modifies the first +Calculates the bit-wise XOR of its two arguments and modifies the first argument. =head2 bior @@ -344,7 +344,7 @@ $x = Math::GMP->new(6); $x->bior(3); # 0b110 & 0b11 = 0b111 -Calculates the bit-wise OR of it's two arguments and modifies the first +Calculates the bit-wise OR of its two arguments and modifies the first argument. =head2 bgcd @@ -352,7 +352,7 @@ $x = Math::GMP->new(6); $x->bgcd(4); # 6 / 2 = 2, 4 / 2 = 2 => 2 -Calculates the Greatest Common Divisior of it's two arguments and returns the result. +Calculates the Greatest Common Divisior of its two arguments and returns the result. =head2 legendre @@ -395,7 +395,7 @@ use Math::BigInt lib => 'GMP'; -If Math::GMP is not installed, it will fall back to it's own Perl +If Math::GMP is not installed, it will fall back to its own Perl implementation. See L<Math::BigInt> and L<Math::BigInt::GMP> or
Has been applied.