Change 31679 by [EMAIL PROTECTED] on 2007/08/03 11:38:26
Subject: [PATCH] fix typo in bigint POD
From: Tels <[EMAIL PROTECTED]>
Date: Fri, 3 Aug 2007 12:06:01 +0200
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/lib/bigint.pm#22 edit
... //depot/perl/lib/bignum.pm#23 edit
... //depot/perl/lib/bigrat.pm#20 edit
Differences ...
==== //depot/perl/lib/bigint.pm#22 (text) ====
Index: perl/lib/bigint.pm
--- perl/lib/bigint.pm#21~31485~ 2007-06-27 23:03:32.000000000 -0700
+++ perl/lib/bigint.pm 2007-08-03 04:38:26.000000000 -0700
@@ -396,13 +396,13 @@
=item hex
-Override the build-in hex() method with a version that can handle big
+Override the built-in hex() method with a version that can handle big
integers. Note that under Perl v5.9.4 or ealier, this will be global
and cannot be disabled with "no bigint;".
=item oct
-Override the build-in oct() method with a version that can handle big
+Override the built-in oct() method with a version that can handle big
integers. Note that under Perl v5.9.4 or ealier, this will be global
and cannot be disabled with "no bigint;".
==== //depot/perl/lib/bignum.pm#23 (text) ====
Index: perl/lib/bignum.pm
--- perl/lib/bignum.pm#22~31485~ 2007-06-27 23:03:32.000000000 -0700
+++ perl/lib/bignum.pm 2007-08-03 04:38:26.000000000 -0700
@@ -419,13 +419,13 @@
=item hex
-Override the build-in hex() method with a version that can handle big
+Override the built-in hex() method with a version that can handle big
integers. Note that under Perl older than v5.9.4, this will be global
and cannot be disabled with "no bigint;".
=item oct
-Override the build-in oct() method with a version that can handle big
+Override the built-in oct() method with a version that can handle big
integers. Note that under Perl older than v5.9.4, this will be global
and cannot be disabled with "no bigint;".
==== //depot/perl/lib/bigrat.pm#20 (text) ====
Index: perl/lib/bigrat.pm
--- perl/lib/bigrat.pm#19~31485~ 2007-06-27 23:03:32.000000000 -0700
+++ perl/lib/bigrat.pm 2007-08-03 04:38:26.000000000 -0700
@@ -485,13 +485,13 @@
=item hex
-Override the build-in hex() method with a version that can handle big
+Override the built-in hex() method with a version that can handle big
integers. Note that under Perl v5.9.4 or ealier, this will be global
and cannot be disabled with "no bigint;".
=item oct
-Override the build-in oct() method with a version that can handle big
+Override the built-in oct() method with a version that can handle big
integers. Note that under Perl v5.9.4 or ealier, this will be global
and cannot be disabled with "no bigint;".
End of Patch.