Skip to content

Commit 891e493

Browse files
committed
Fixing issue raised by @rahogaboom in email list. 👍
1 parent c454b70 commit 891e493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/packages.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Foo {
3434
3535
my $foo; # simple identifiers
3636
say Foo::Bar.baz; # Calling a method; OUTPUT: «Þor is mighty␤»
37-
say $Foo::Bar::zape; # compound identifiers separated by ::; OUTPUT: «zipi␤»
37+
say Foo::Bar::zape; # compound identifiers separated by ::; OUTPUT: «zipi␤»
3838
my $bar = 'Bar';
3939
say $Foo::($bar)::quux; # compound identifiers with interpolations; OUTPUT: «42␤»
4040
$42; # numeric names

0 commit comments

Comments
 (0)