Skip to content

Commit 68390f1

Browse files
committed
style: space after comma
1 parent b409bd1 commit 68390f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Language/list.pod6

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ list in order and stopping after the last element:
117117
=head2 X<Single Argument Rule>
118118
119119
It is the rule by which the set of parameters passed to an iterator such as C<for> is treated as a single argument, instead of several arguments; that is
120-
C<some-iterator( a, b, c, ...)> will always be treated as C<some-iterator( list-or-array(a,b,c))> and never as C<(some-iterator(a))(b)...>, that is, iterative application of the iterator to the first argument, then the result to the next argument, and so on. In this example
120+
C<some-iterator( a, b, c, ...)> will always be treated as C<some-iterator( list-or-array(a, b, c))> and never as C<(some-iterator(a))(b)...>, that is, iterative application of the iterator to the first argument, then the result to the next argument, and so on. In this example
121121
122122
=begin code
123-
my @list = [ (1,2,3),
124-
(1,2,),
125-
[<a b c>,<d e f>],
123+
my @list = [ (1, 2, 3),
124+
(1, 2, ),
125+
[<a b c>, <d e f>],
126126
[[1]] ];
127127
128128
for @list -> @element {

0 commit comments

Comments
 (0)