Skip to content

Commit 566bdd9

Browse files
committed
Fix return type of comb; sjn++
1 parent cfb60e3 commit 566bdd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Type/Cool.pod6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,8 +1150,8 @@ Only whitespace counts as word boundaries
11501150
11511151
Defined as:
11521152
1153-
multi sub comb(Regex $matcher, Str(Cool) $input, $limit = * --> List:D)
1154-
multi method comb(Regex $matcher, $limit = * --> List:D)
1153+
multi sub comb(Regex $matcher, Str(Cool) $input, $limit = * --> Seq)
1154+
multi method comb(Regex $matcher, $limit = * --> Seq)
11551155
11561156
Returns all (or if supplied, at most C<$limit>) matches of the invocant
11571157
(method form) or the second argument (sub form) against the

0 commit comments

Comments
 (0)