summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-11-06 12:57:12 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-11-06 12:58:46 -0800
commitdc115b7c990ed39ae756b1aeda859ef04e228a7d (patch)
treed3125f3674e62bee678d2f019ac6ed27a2b61f12 /t
parent1fda587de9a7b85b90f9599b4b746d258afa2e6c (diff)
downloadperl-dc115b7c990ed39ae756b1aeda859ef04e228a7d.tar.gz
Typos in gv.t
Diffstat (limited to 't')
-rw-r--r--t/op/gv.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/gv.t b/t/op/gv.t
index 81e7ba8f50..b681638d51 100644
--- a/t/op/gv.t
+++ b/t/op/gv.t
@@ -856,13 +856,13 @@ ok eval {
my $glob = do { no warnings "once"; \*phing::foo};
delete $::{"phing::"};
*$glob = *greck;
-}, "Assigning a glob-with-sub to a glob that has lost its stash warks";
+}, "Assigning a glob-with-sub to a glob that has lost its stash works";
ok eval {
sub pon::foo;
my $glob = \*pon::foo;
delete $::{"pon::"};
*$glob = *foo;
-}, "Assigning a glob to a glob-with-sub that has lost its stash warks";
+}, "Assigning a glob to a glob-with-sub that has lost its stash works";
{
package Tie::Alias;