This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix a couple of Math-BigInt POD nits
authorFlorian Ragwitz <rafl@debian.org>
Fri, 10 Sep 2010 04:51:14 +0000 (06:51 +0200)
committerFlorian Ragwitz <rafl@debian.org>
Fri, 10 Sep 2010 05:08:19 +0000 (07:08 +0200)
Closes CPANRT#51824.

dist/Math-BigInt/lib/Math/BigFloat.pm
dist/Math-BigInt/lib/Math/BigInt.pm

index 27d60b3..4a5068e 100644 (file)
@@ -3905,7 +3905,7 @@ Some routines (C<is_odd()>, C<is_even()>, C<is_zero()>, C<is_one()>,
 C<is_nan()>) return true or false, while others (C<bcmp()>, C<bacmp()>)
 return either undef, <0, 0 or >0 and are suited for sort.
 
-Actual math is done by using the class defined with C<with => Class;> (which
+Actual math is done by using the class defined with C<< with => Class; >> (which
 defaults to BigInts) to represent the mantissa and exponent.
 
 The sign C</^[+-]$/> is stored separately. The string 'NaN' is used to 
index 9550125..23fedbe 100644 (file)
@@ -3399,8 +3399,8 @@ Value must be greater than zero. Pass an undef value to disable it:
        $x->accuracy(undef);
        Math::BigInt->accuracy(undef);
 
-Returns the current accuracy. For C<$x->accuracy()> it will return either the
-local accuracy, or if not defined, the global. This means the return value
+Returns the current accuracy. For C<< $x->accuracy() >> it will return either
+the local accuracy, or if not defined, the global. This means the return value
 represents the accuracy that will be in effect for $x:
 
        $y = Math::BigInt->new(1234567);        # unrounded
@@ -3449,8 +3449,8 @@ Pass an undef value to disable it:
        $x->precision(undef);
        Math::BigInt->precision(undef);
 
-Returns the current precision. For C<$x->precision()> it will return either the
-local precision of $x, or if not defined, the global. This means the return
+Returns the current precision. For C<< $x->precision() >> it will return either
+the local precision of $x, or if not defined, the global. This means the return
 value represents the prevision that will be in effect for $x:
 
        $y = Math::BigInt->new(1234567);        # unrounded
@@ -4653,8 +4653,8 @@ directly.
 
 =item *
 
-The private object hash keys like C<$x->{sign}> may not be changed, but
-additional keys can be added, like C<$x->{_custom}>.
+The private object hash keys like C<< $x->{sign} >> may not be changed, but
+additional keys can be added, like C<< $x->{_custom} >>.
 
 =item *