Skip to content

Commit 229c4f9

Browse files
committed
Fix P5ism '->' in language/testing
1 parent 9320442 commit 229c4f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/testing.pod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ class GreatUncleBulgaria is Womble {
302302
subtest {
303303
my $womble = GreatUncleBulgaria.new;
304304
isa-ok($womble, Womble, "Great Uncle Bulgaria is a womble");
305-
is($womble->location, "Wimbledon Common", "Correct location");
306-
ok($womble->spectacles, "Wears spectacles");
305+
is($womble.location, "Wimbledon Common", "Correct location");
306+
ok($womble.spectacles, "Wears spectacles");
307307
}, "Check Great Uncle Bulgaria";
308308
=end code
309309

0 commit comments

Comments
 (0)