diff --git a/doc/Type/List.pod6 b/doc/Type/List.pod6 index 089789425..b5154e3ed 100644 --- a/doc/Type/List.pod6 +++ b/doc/Type/List.pod6 @@ -1009,9 +1009,9 @@ C statements inside C<&with>: Defined as: - multi sub combinations($from, $of = 0..* --> Seq:D) - multi method combinations(List:D: Int() $of --> Seq:D) - multi method combinations(List:D: Range:D $of = 0..* --> Seq:D) + multi sub combinations($from, $of = 0..* --> Seq:D) + multi method combinations(List:D: Int() $of --> Seq:D) + multi method combinations(List:D: Iterable:D $of = 0..* --> Seq:D) Returns a L with all C<$of>-combinations of the invocant list. C<$of> can be a numeric L, in which