In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/df0693ed5966ca93ea7f19c60892d289c7d74fb4?hp=414fa04cdda19d4646d695b14dd909e515b70524>

- Log -----------------------------------------------------------------
commit df0693ed5966ca93ea7f19c60892d289c7d74fb4
Author: gregor herrmann <[email protected]>
Date:   Fri Sep 24 22:17:34 2010 +0200

    Fis various Math::BigInt spelling mistakes
-----------------------------------------------------------------------

Summary of changes:
 AUTHORS                                     |    1 +
 dist/Math-BigInt/lib/Math/BigFloat.pm       |    2 +-
 dist/Math-BigInt/lib/Math/BigInt.pm         |    8 ++++----
 dist/Math-BigInt/lib/Math/BigInt/Calc.pm    |    2 +-
 dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm |    2 +-
 5 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index 2221b8d..0dee059 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -379,6 +379,7 @@ Greg Matheson                       <[email protected]>
 Greg Seibert                   <[email protected]>
 Greg Ward                      <[email protected]>
 Gregor Chrupala                        <[email protected]>
+gregor herrmann                        <[email protected]>
 Gregory Martin Pfeil           <[email protected]>
 Guenter Schmidt                        <[email protected]>
 Guido Flohr                    <[email protected]>
diff --git a/dist/Math-BigInt/lib/Math/BigFloat.pm 
b/dist/Math-BigInt/lib/Math/BigFloat.pm
index 991e72c..e4ad946 100644
--- a/dist/Math-BigInt/lib/Math/BigFloat.pm
+++ b/dist/Math-BigInt/lib/Math/BigFloat.pm
@@ -4241,7 +4241,7 @@ request a different storage class for use with 
Math::BigFloat:
         use Math::BigFloat with => 'Math::BigInt::Lite';
 
 However, this request is ignored, as the current code now uses the low-level
-math libary for directly storing the number parts.
+math library for directly storing the number parts.
 
 =head1 EXPORTS
 
diff --git a/dist/Math-BigInt/lib/Math/BigInt.pm 
b/dist/Math-BigInt/lib/Math/BigInt.pm
index b673bf1..9eaad0d 100644
--- a/dist/Math-BigInt/lib/Math/BigInt.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt.pm
@@ -30,7 +30,7 @@ use vars qw/$round_mode $accuracy $precision $div_scale 
$rnd_mode
 use strict;
 
 # Inside overload, the first arg is always an object. If the original code had
-# it reversed (like $x = 2 * $y), then the third paramater is true.
+# it reversed (like $x = 2 * $y), then the third parameter is true.
 # In some cases (like add, $x = $x + 2 is the same as $x = 2 + $x) this makes
 # no difference, but in some cases it does.
 
@@ -4160,7 +4160,7 @@ versions <= 5.7.2) is like this:
 =item Accuracy (significant digits)
 
   * fround($a) rounds to $a significant digits
-  * only fdiv() and fsqrt() take A as (optional) paramater
+  * only fdiv() and fsqrt() take A as (optional) parameter
     + other operations simply create the same number (fneg etc), or more (fmul)
       of digits
     + rounding/truncating is only done when explicitly calling one of fround
@@ -4418,7 +4418,7 @@ These all might have problems handling infinity right.
 
 =head1 INTERNALS
 
-The actual numbers are stored as unsigned big integers (with seperate sign).
+The actual numbers are stored as unsigned big integers (with separate sign).
 
 You should neither care about nor depend on the internal representation; it
 might change without notice. Use B<ONLY> method calls like C<< $x->sign(); >>
@@ -4465,7 +4465,7 @@ small numbers (less than about 20 digits) and when 
converting very large
 numbers to decimal (for instance for printing, rounding, calculating their
 length in decimal etc).
 
-So please select carefully what libary you want to use.
+So please select carefully what library you want to use.
 
 Different low-level libraries use different formats to store the numbers.
 However, you should B<NOT> depend on the number having a specific format
diff --git a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm 
b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm
index 9320a56..dc688e5 100644
--- a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm
@@ -2598,7 +2598,7 @@ the same terms as Perl itself.
 
 Original math code by Mark Biggar, rewritten by Tels L<http://bloodgate.com/>
 in late 2000.
-Seperated from BigInt and shaped API with the help of John Peacock.
+Separated from BigInt and shaped API with the help of John Peacock.
 
 Fixed, speed-up, streamlined and enhanced by Tels 2001 - 2007.
 
diff --git a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm 
b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
index 56d7000..d5ff028 100644
--- a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
@@ -300,7 +300,7 @@ optional routines the low-level math package does not 
provide on its own.
 Will be loaded on demand and called automatically by BigInt.
 
 Stuff here is really low-priority to optimize, since it is far better to
-implement the operation in the low-level math libary directly, possible even
+implement the operation in the low-level math library directly, possible even
 using a call to the native lib.
 
 =head1 METHODS

--
Perl5 Master Repository

Reply via email to