Skip to content

Commit 0602581

Browse files
authored
Unneeded curly brace
1 parent 8b1dd9f commit 0602581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/list.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ shortcut. In this case the outer List becomes the first element of the Array.
6262
# OUTPUT«((1 2) (3 4))␤»
6363
@a := (1,2; 3,4);
6464
say @a.flat;
65-
# OUTPUT«((1 2 3 4)␤»
65+
# OUTPUT«(1 2 3 4)␤»
6666
6767
One of the ways C<@>-sigiled variables act like lists is by always supporting
6868
L<positional subscripting|/language/subscripts>. Anything bound to a C<@>-sigiled

0 commit comments

Comments
 (0)