diff options
Diffstat (limited to 'lib')
-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 |