diff options
author | Robin Barker <Robin.Barker@npl.co.uk> | 2009-09-20 21:32:06 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-09-21 09:33:01 +0200 |
commit | 6fcc101e247754269f37bfa4586f8325b2e75b06 (patch) | |
tree | 3e28489241724595edd5e2d7320d2d60ccdc9222 /lib/deprecate.pm | |
parent | 12feb466e49e5e86ea65d1d92d4162b6b4712c70 (diff) | |
download | perl-6fcc101e247754269f37bfa4586f8325b2e75b06.tar.gz |
typo in usage of deprecate
Diffstat (limited to 'lib/deprecate.pm')
-rw-r--r-- | lib/deprecate.pm | 2 |
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 |