diff options
author | jkeenan <jkeenan@cpan.org> | 2011-11-19 19:15:23 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-22 16:27:13 -0800 |
commit | 6dfee1ec62c64d7afe8ced4650596dd9e7f71a63 (patch) | |
tree | 5a09d0082801ea6bacdf65936ea94dc0d12253ca /dist/if | |
parent | e38ccfd9be3e341e4872a41a8378e174156b05a1 (diff) | |
download | perl-6dfee1ec62c64d7afe8ced4650596dd9e7f71a63.tar.gz |
[RT #36079] Convert ` to '.
Diffstat (limited to 'dist/if')
-rw-r--r-- | dist/if/if.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/if/if.pm b/dist/if/if.pm index d321cd6157..c04ac6bd8f 100644 --- a/dist/if/if.pm +++ b/dist/if/if.pm @@ -4,7 +4,7 @@ $VERSION = '0.0601'; sub work { my $method = shift() ? 'import' : 'unimport'; - die "Too few arguments to `use if' (some code returning an empty list in list context?)" + die "Too few arguments to 'use if' (some code returning an empty list in list context?)" unless @_ >= 2; return unless shift; # CONDITION |