summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPerlover <perlover@perlover.com>2011-11-16 19:46:41 -0700
committerKarl Williamson <public@khwilliamson.com>2011-11-16 20:08:38 -0700
commite2af760154b3243ba59f0f5e9986616a6022b986 (patch)
treef6778e8371dd839c8c3e541049f535d023fde024 /lib
parent97bae9c59cd181b3b54061213ec1fdce0ccb30d4 (diff)
downloadperl-e2af760154b3243ba59f0f5e9986616a6022b986.tar.gz
Fix misprint in doc of UNIVERSAL
Diffstat (limited to 'lib')
-rw-r--r--lib/UNIVERSAL.pm4
1 files changed, 2 insertions, 2 deletions
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") ) {
...
}