summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
Diffstat (limited to 'dist')
-rw-r--r--dist/Filter-Simple/lib/Filter/Simple.pm3
-rw-r--r--dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm12
-rw-r--r--dist/Math-BigRat/lib/Math/BigRat.pm4
-rw-r--r--dist/Safe/Safe.pm6
4 files changed, 13 insertions, 12 deletions
diff --git a/dist/Filter-Simple/lib/Filter/Simple.pm b/dist/Filter-Simple/lib/Filter/Simple.pm
index 5de131fec2..d1da0b2dea 100644
--- a/dist/Filter-Simple/lib/Filter/Simple.pm
+++ b/dist/Filter-Simple/lib/Filter/Simple.pm
@@ -4,7 +4,7 @@ use Text::Balanced ':ALL';
use vars qw{ $VERSION @EXPORT };
-$VERSION = '0.89';
+$VERSION = '0.90';
use Filter::Util::Call;
use Carp;
@@ -243,7 +243,6 @@ __END__
Filter::Simple - Simplified source filtering
-
=head1 SYNOPSIS
# in MyFilter.pm:
diff --git a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
index c82e153986..6295d86259 100644
--- a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
@@ -5,7 +5,7 @@ use strict;
# use warnings; # dont use warnings for older Perls
use vars qw/$VERSION/;
-$VERSION = '1.998';
+$VERSION = '1.999';
package Math::BigInt;
@@ -305,11 +305,15 @@ using a call to the native lib.
=head1 METHODS
-=head2 __emu_bxor
+=over
-=head2 __emu_band
+=item __emu_bxor
-=head2 __emu_bior
+=item __emu_band
+
+=item __emu_bior
+
+=back
=head1 LICENSE
diff --git a/dist/Math-BigRat/lib/Math/BigRat.pm b/dist/Math-BigRat/lib/Math/BigRat.pm
index a70a42905a..757a03b8f3 100644
--- a/dist/Math-BigRat/lib/Math/BigRat.pm
+++ b/dist/Math-BigRat/lib/Math/BigRat.pm
@@ -24,7 +24,7 @@ use vars qw($VERSION @ISA $upgrade $downgrade
@ISA = qw(Math::BigFloat);
-$VERSION = '0.2604';
+$VERSION = '0.2605';
$VERSION = eval $VERSION;
# inherit overload from Math::BigFloat, but disable the bitwise ops that don't
@@ -1925,7 +1925,7 @@ Euler's number.
This method was added in v0.20 of Math::BigRat (May 2007).
-See also L</blog()>.
+See also C<blog()>.
=head2 bnok()
diff --git a/dist/Safe/Safe.pm b/dist/Safe/Safe.pm
index f00853e386..bee3718593 100644
--- a/dist/Safe/Safe.pm
+++ b/dist/Safe/Safe.pm
@@ -3,7 +3,7 @@ package Safe;
use 5.003_11;
use Scalar::Util qw(reftype refaddr);
-$Safe::VERSION = "2.35";
+$Safe::VERSION = "2.36";
# *** Don't declare any lexicals above this point ***
#
@@ -590,9 +590,7 @@ Deny I<only> the listed operators from being used when compiling code
in the compartment (I<all> other operators will be permitted, so you probably
don't want to use this method).
-=head2 trap (OP, ...)
-
-=head2 untrap (OP, ...)
+=head2 trap (OP, ...), untrap (OP, ...)
The trap and untrap methods are synonyms for deny and permit
respectfully.