This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Spelling bee.
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 29 May 2002 13:25:31 +0000 (13:25 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 29 May 2002 13:25:31 +0000 (13:25 +0000)
p4raw-id: //depot/perl@16859

t/op/tie.t

index 914db11..334b5b4 100755 (executable)
@@ -224,7 +224,7 @@ sub Self2::PRINT     { $printed = 1; }
     print $c 'Hello';
 }
 die "self-tied glob not PRINTed" unless $printed == 1;
-die "self-tied glob not DESTROYd" unless $destroyed == 1;
+die "self-tied glob not DESTROYed" unless $destroyed == 1;
 EXPECT
 ########
 
@@ -237,7 +237,7 @@ sub Self3::DESTROY   { $destroyed = 1; }
     my $c = geniosym;
     tie *$c, 'Self3', $c;
 }
-die "self-tied IO not DESTROYd" unless $destroyed == 1;
+die "self-tied IO not DESTROYed" unless $destroyed == 1;
 EXPECT
 ########