Spelling: reminder -> remainder
authorPeter John Acklam <pjacklam@online.no>
Mon, 29 Nov 2010 15:00:07 +0000 (16:00 +0100)
committerFlorian Ragwitz <rafl@debian.org>
Tue, 30 Nov 2010 12:39:30 +0000 (13:39 +0100)
dist/Math-BigInt/lib/Math/BigFloat.pm
dist/Math-BigInt/lib/Math/BigInt.pm
dist/Math-BigInt/t/bigfltpm.inc
dist/Math-BigInt/t/bigintpm.inc
dist/Math-BigInt/t/mbimbf.inc
dist/Math-BigInt/t/upgrade.inc

index ffaf628..f2968a2 100644 (file)
@@ -1759,7 +1759,7 @@ sub bdiv
     $y->{sign} =~ tr/+-/-+/;
     # continue with normal div code:
 
-    # make copy of $x in case of list context for later reminder calculation
+    # make copy of $x in case of list context for later remainder calculation
     if (wantarray && $y_not_one)
       {
       $rem = $x->copy();
@@ -1821,7 +1821,7 @@ sub bdiv
 
 sub bmod 
   {
-  # (dividend: BFLOAT or num_str, divisor: BFLOAT or num_str) return reminder 
+  # (dividend: BFLOAT or num_str, divisor: BFLOAT or num_str) return remainder
 
   # set up parameters
   my ($self,$x,$y,$a,$p,$r) = (ref($_[0]),@_);
@@ -3372,7 +3372,7 @@ sub brsft
   # negative amount?
   return $x->blsft($y->copy()->babs(),$n) if $y->{sign} =~ /^-/;
 
-  # the following call to bdiv() will return either quo or (quo,reminder):
+  # the following call to bdiv() will return either quo or (quo,remainder):
   $x->bdiv($n->bpow($y),$a,$p,$r,$y);
   }
 
@@ -4287,7 +4287,7 @@ The following will probably not print what you expect:
 
        print $c->bdiv(123.456),"\n";
 
-It prints both quotient and reminder since print works in list context. Also,
+It prints both quotient and remainder since print works in list context. Also,
 bdiv() will modify $c, so be careful. You probably want to use
        
        print $c / 123.456,"\n";
index 4814422..bd61d32 100644 (file)
@@ -1653,7 +1653,7 @@ sub _div_inf
    if (($x->is_nan() || $y->is_nan())   ||
        ($x->is_zero() && $y->is_zero()));
  
-  # +-inf / +-inf == NaN, reminder also NaN
+  # +-inf / +-inf == NaN, remainder also NaN
   if (($x->{sign} =~ /^[+-]inf$/) && ($y->{sign} =~ /^[+-]inf$/))
     {
     return wantarray ? ($x->bnan(),$self->bnan()) : $x->bnan();
index a27c754..bb5384b 100644 (file)
@@ -1507,7 +1507,7 @@ inf:inf:NaN
 inf:-inf:NaN
 8:0:8
 inf:0:inf
-# exceptions to reminder rule
+# exceptions to remainder rule
 -inf:0:-inf
 -8:0:-8
 0:0:NaN
index 2acaba0..e846004 100644 (file)
@@ -1541,7 +1541,7 @@ inf:inf:NaN,NaN
 inf:-inf:NaN,NaN
 8:0:inf,8
 inf:0:inf,inf
-# exceptions to reminder rule
+# exceptions to remainder rule
 -8:0:-inf,-8
 -inf:0:-inf,-inf
 0:0:NaN,NaN
@@ -1760,7 +1760,7 @@ inf:inf:NaN
 inf:-inf:NaN
 8:0:8
 inf:0:inf
-# exceptions to reminder rule
+# exceptions to remainder rule
 -inf:0:-inf
 -8:0:-8
 0:0:NaN
index 1c79a0d..50e0ebc 100644 (file)
@@ -584,7 +584,7 @@ is ($x,'12350'); is ($x->{_a},4); is ($x->{_p}, undef);
 $x = $mbf->new(100) / 3;
 is ($x->{_a}, undef); is ($x->{_p}, undef);
 
-# result & reminder
+# result & remainder
 $x = $mbf->new(100) / 3; ($x,$y) = $x->bdiv(3);
 is ($x->{_a}, undef); is ($x->{_p}, undef);
 is ($y->{_a}, undef); is ($y->{_p}, undef);
index e623b73..5c8d11a 100644 (file)
@@ -862,7 +862,7 @@ inf:inf:NaN,NaN
 inf:-inf:NaN,NaN
 8:0:inf,8
 inf:0:inf,inf
-# exceptions to reminder rule
+# exceptions to remainder rule
 -8:0:-inf,-8
 -inf:0:-inf,-inf
 0:0:NaN,NaN
@@ -965,7 +965,7 @@ inf:inf:NaN
 inf:-inf:NaN
 8:0:8
 inf:0:inf
-# exceptions to reminder rule
+# exceptions to remainder rule
 -inf:0:-inf
 -8:0:-8
 0:0:NaN