diff options
author | James E Keenan <jkeenan@cpan.org> | 2020-08-22 16:44:29 -0400 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2020-08-22 16:47:08 -0400 |
commit | f10b9e9d8bf0764ab314758fe86a9406749e9f22 (patch) | |
tree | 09b38cd9f8e3059e30d98e6ce573fd3591d141f8 /t/lib | |
parent | ea32afd399a6937f2032d545f4b852b58eba4b20 (diff) | |
download | perl-f10b9e9d8bf0764ab314758fe86a9406749e9f22.tar.gz |
Correct typo in 'die' message.
Diffstat (limited to 't/lib')
-rw-r--r-- | t/lib/common.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/common.pl b/t/lib/common.pl index 9c7060ff38..ac0b404606 100644 --- a/t/lib/common.pl +++ b/t/lib/common.pl @@ -17,7 +17,7 @@ use strict; use warnings; my (undef, $file) = caller; my ($pragma_name) = $file =~ /([A-Za-z_0-9]+)\.t$/ - or die "Can't identify pragama to test from file name '$file'"; + or die "Can't identify pragma to test from file name '$file'"; $| = 1; |