s/rationale/rational/g on bigrats.
Jarkko Hietaniemi [Sun, 24 Aug 2003 07:45:47 +0000 (07:45 +0000)]
p4raw-id: //depot/perl@20864

lib/Math/BigRat.pm
lib/bigrat.pm

index 993c2a4..2b5796f 100644 (file)
@@ -9,7 +9,7 @@
 #   _n   : numeraotr (value = _n/_d)
 #   _a   : accuracy
 #   _p   : precision
-#   _f   : flags, used by MBR to flag parts of a rationale as untouchable
+#   _f   : flags, used by MBR to flag parts of a rational as untouchable
 
 package Math::BigRat;
 
@@ -56,7 +56,7 @@ sub isa
 
 sub _new_from_float
   {
-  # turn a single float input into a rationale (like '0.1')
+  # turn a single float input into a rational (like '0.1')
   my ($self,$f) = @_;
 
   return $self->bnan() if $f->is_nan();
@@ -365,7 +365,7 @@ sub _bzero
 
 sub badd
   {
-  # add two rationales
+  # add two rationals
 
   # set up parameters
   my ($self,$x,$y,@r) = (ref($_[0]),@_);
@@ -410,7 +410,7 @@ sub badd
 
 sub bsub
   {
-  # subtract two rationales
+  # subtract two rationals
 
   # set up parameters
   my ($self,$x,$y,@r) = (ref($_[0]),@_);
@@ -454,7 +454,7 @@ sub bsub
 
 sub bmul
   {
-  # multiply two rationales
+  # multiply two rationals
   
   # set up parameters
   my ($self,$x,$y,@r) = (ref($_[0]),@_);
@@ -1132,7 +1132,7 @@ __END__
 
 =head1 NAME
 
-Math::BigRat - arbitrarily big rationales
+Math::BigRat - arbitrarily big rationals
 
 =head1 SYNOPSIS
 
@@ -1146,7 +1146,7 @@ Math::BigRat - arbitrarily big rationales
 =head1 DESCRIPTION
 
 Math::BigRat complements Math::BigInt and Math::BigFloat by providing support
-for arbitrarily big rationales.
+for arbitrarily big rationals.
 
 =head2 MATH LIBRARY
 
index 49d1f38..45dfed4 100644 (file)
@@ -155,7 +155,7 @@ __END__
 
 =head1 NAME
 
-bigrat - Transparent BigNumber/BigRationale support for Perl
+bigrat - Transparent BigNumber/BigRational support for Perl
 
 =head1 SYNOPSIS