summaryrefslogtreecommitdiff
path: root/t/op/eval.t
diff options
context:
space:
mode:
authorPeter J. Acklam) (via RT <perlbug-followup@perl.org>2011-01-06 23:14:45 -0800
committerAbigail <abigail@abigail.be>2011-01-07 11:19:58 +0100
commit93f09d7ba52fad6ba827274ee4fa13235edb2b44 (patch)
treed37f89d97bcd3531beefe5a174c8dcaf896a52c0 /t/op/eval.t
parentf858446f8d2c74c0a4665f0be04b65fe90e1b08c (diff)
downloadperl-93f09d7ba52fad6ba827274ee4fa13235edb2b44.tar.gz
Fix typos (spelling errors) in t/*.
# New Ticket Created by (Peter J. Acklam) # Please include the string: [perl #81916] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81916 >
Diffstat (limited to 't/op/eval.t')
-rw-r--r--t/op/eval.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/op/eval.t b/t/op/eval.t
index a1c1c1a94c..5ef30096c8 100644
--- a/t/op/eval.t
+++ b/t/op/eval.t
@@ -500,7 +500,7 @@ print "ok $test # length of \$@ after eval\n"; $test++;
print "not " if (length $@ != 0);
print "ok $test # length of \$@ after eval\n"; $test++;
-# Check if eval { 1 }; compeltly resets $@
+# Check if eval { 1 }; completely resets $@
if (eval "use Devel::Peek; 1;") {
$tempfile = tempfile();
$outfile = tempfile();
@@ -540,10 +540,10 @@ END_EVAL_TEST
my $ok = runperl(progfile => $tempfile);
print "not " unless $ok;
- print "ok $test # eval { 1 } completly resets \$@\n";
+ print "ok $test # eval { 1 } completely resets \$@\n";
}
else {
- print "ok $test # skipped - eval { 1 } completly resets \$@\n";
+ print "ok $test # skipped - eval { 1 } completely resets \$@\n";
}
$test++;