Skip to content

Commit 2af5ec5

Browse files
committed
prefer spaces after commas
1 parent 241dc10 commit 2af5ec5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Language/pod.pod6

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,22 @@ Perl6-ish option pairs. That is, any of:
4949
5050
=begin table
5151
Value is... Specify with... Or with... Or with...
52-
=============== =================== ============== ===========
53-
List :key[$e1,$e2,...] :key($e1,$e2,...)
54-
Hash :key{$k1=>$v1,$k2=>$v2}
52+
=============== =================== ============== ===========
53+
List :key[$e1, $e2, ...] :key($e1, $e2, ...)
54+
Hash :key{$k1=>$v1, $k2=>$v2}
5555
Boolean (true) :key :key(True) :key[True]
5656
Boolean (false) :!key :key(False) :key[False]
5757
String :key<str> :key('str') :key("str")
5858
Int :key(42) :key[42]
5959
Number :key(2.3) :key[2.3]
6060
=end table
6161
62-
Where '$e1,$e2,...' are list elements of type String, Int, Number, or
62+
Where '$e1, $e2, ...' are list elements of type String, Int, Number, or
6363
Boolean. Lists may have mixed element types. Note that one-element
6464
lists are converted to the type of their element (String, Int, Number, or
6565
Boolean).
6666
67-
For hashes, '$k1,$k2,...' are keys of type Str and '$v1,$2,...'
67+
For hashes, '$k1, $k2, ...' are keys of type Str and '$v1, $2, ...'
6868
are values of type String, Int, Number, or Boolean.
6969
7070
Strings may use any of the single Q/q quote constructs, e.g.,

0 commit comments

Comments
 (0)