diff options
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | lib/UNIVERSAL.pm | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -847,6 +847,7 @@ Pavel Kaňkovský <kan@dcit.cz> Pavel Zakouril <Pavel.Zakouril@mff.cuni.cz> Pedro Felipe Horrillo Guerra <pancho@pancho.name> Per Einar Ellefsen <per.einar@skynet.be> +Perlover <perlover@perlover.com> Peter BARABAS Pete Peterson <petersonp@genrad.com> Peter Chines <pchines@nhgri.nih.gov> diff --git a/lib/UNIVERSAL.pm b/lib/UNIVERSAL.pm index e649ef2c2f..4e4122362a 100644 --- a/lib/UNIVERSAL.pm +++ b/lib/UNIVERSAL.pm @@ -1,6 +1,6 @@ package UNIVERSAL; -our $VERSION = '1.09'; +our $VERSION = '1.10'; # UNIVERSAL should not contain any extra subs/methods beyond those # that it exists to define. The use of Exporter below is a historical @@ -103,7 +103,7 @@ check the invocand with C<blessed> from L<Scalar::Util> first: use Scalar::Util 'blessed'; - if ( blessed( $obj ) && $obj->isa("Some::Class") { + if ( blessed( $obj ) && $obj->isa("Some::Class") ) { ... } |