Skip to content

Commit 9fb0ac3

Browse files
authored
Merge pull request #823 from nxadm/master
Remove $ from constant
2 parents a38088a + 856ad77 commit 9fb0ac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/modules.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ them with the L<is export> trait.
117117
unit module MyModule;
118118
our $var is export = 3;
119119
sub foo is export { ... };
120-
constant $FOO is export = "foobar";
120+
constant FOO is export = "foobar";
121121
enum FooBar is export <one two three>;
122122
123123
# Packages like classes can be exported too

0 commit comments

Comments
 (0)