@@ -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,
107107not just literal values:
108108
109109 my $b = 1;
@@ -146,8 +146,8 @@ Returns the number of positional elements in the C<Capture>.
146146 multi method keys(Capture:D: --> Seq:D)
147147
148148Returns 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
150- ordinal position starting from zero.
149+ named keys. For positional arguments the keys are the respective arguments'
150+ ordinal positions starting from zero.
151151
152152 my $capture = \(2, 3, 5, apples => (red => 2));
153153 say $capture.keys; # OUTPUT: «(0 1 2 apples)»
@@ -167,7 +167,7 @@ named argument values.
167167 multi method kv(Capture:D: --> Seq:D)
168168
169169Returns 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
171171first followed by the named keys and values.
172172
173173 my $capture = \(2, 3, apples => (red => 2));
0 commit comments