Skip to content

Commit cef16b9

Browse files
authored
In Capture.rakudoc: "are still Lists" → "are still like Lists"; typos
1 parent 2f06e02 commit cef16b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/Capture.rakudoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ L<capture parameter|/language/signatures#Capture_parameters>.
103103
# (2 3)
104104
# Map.new((a => 4, b => 5))
105105

106-
Note that C<Capture>s are still L<C<List>|/type/List>s in that they may contain containers,
106+
Note that C<Capture>s are still like L<C<List>|/type/List>s in that they may contain containers,
107107
not just literal values:
108108

109109
my $b = 1;
@@ -146,7 +146,7 @@ Returns the number of positional elements in the C<Capture>.
146146
multi method keys(Capture:D: --> Seq:D)
147147

148148
Returns a L<C<Seq>|/type/Seq> containing all positional keys followed by all
149-
named keys. For positional arguments the keys are the respective arguments
149+
named keys. For positional arguments the keys are the respective argument's
150150
ordinal position starting from zero.
151151

152152
my $capture = \(2, 3, 5, apples => (red => 2));
@@ -167,7 +167,7 @@ named argument values.
167167
multi method kv(Capture:D: --> Seq:D)
168168

169169
Returns a L<C<Seq>|/type/Seq> of alternating L<keys|#method_keys> and
170-
L<values|#method_values>. The positional keys and values, if any, comes
170+
L<values|#method_values>. The positional keys and values, if any, come
171171
first followed by the named keys and values.
172172

173173
my $capture = \(2, 3, apples => (red => 2));

0 commit comments

Comments
 (0)