From: Jarkko Hietaniemi Date: Sun, 24 Aug 2003 07:45:47 +0000 (+0000) Subject: s/rationale/rational/g on bigrats. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b1f79218ec4085dd37a8c687ca7893705be7bf8f;p=p5sagit%2Fp5-mst-13.2.git s/rationale/rational/g on bigrats. p4raw-id: //depot/perl@20864 --- diff --git a/lib/Math/BigRat.pm b/lib/Math/BigRat.pm index 993c2a4..2b5796f 100644 --- a/lib/Math/BigRat.pm +++ b/lib/Math/BigRat.pm @@ -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 diff --git a/lib/bigrat.pm b/lib/bigrat.pm index 49d1f38..45dfed4 100644 --- a/lib/bigrat.pm +++ b/lib/bigrat.pm @@ -155,7 +155,7 @@ __END__ =head1 NAME -bigrat - Transparent BigNumber/BigRationale support for Perl +bigrat - Transparent BigNumber/BigRational support for Perl =head1 SYNOPSIS