summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobin Barker <Robin.Barker@npl.co.uk>2009-09-20 21:32:06 +0100
committerRafael Garcia-Suarez <rgs@consttype.org>2009-09-21 09:33:01 +0200
commit6fcc101e247754269f37bfa4586f8325b2e75b06 (patch)
tree3e28489241724595edd5e2d7320d2d60ccdc9222 /lib
parent12feb466e49e5e86ea65d1d92d4162b6b4712c70 (diff)
downloadperl-6fcc101e247754269f37bfa4586f8325b2e75b06.tar.gz
typo in usage of deprecate
Diffstat (limited to 'lib')
-rw-r--r--lib/deprecate.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/deprecate.pm b/lib/deprecate.pm
index 951922320a..7b92e0be7c 100644
--- a/lib/deprecate.pm
+++ b/lib/deprecate.pm
@@ -65,7 +65,7 @@ deprecate - Perl pragma for deprecating the core version of a module
use deprecate; # always deprecate the module in which this occurs
- use if $[ > 5.010, 'deprecate'; # conditionally deprecate the module
+ use if $] > 5.010, 'deprecate'; # conditionally deprecate the module
=head1 DESCRIPTION