File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -673,7 +673,7 @@ Examples:
673
673
multi method lines(Str:D: $limit, :$chomp = True)
674
674
multi method lines(Str:D: :$chomp = True)
675
675
676
- Returns a list of lines. By default, it chomps line endings the same as a
676
+ Returns a L<C<Seq>|/type/Seq> of lines. By default, it chomps line endings the same as a
677
677
call to C<$input.comb( / ^^ \N* /, $limit )> would. To keep line endings,
678
678
set the optional named parameter C<$chomp> to C<False>.
679
679
@@ -708,7 +708,7 @@ Use L<elems|/routine/elems> call on the returned L<C<Seq>|/type/Seq> instead:
708
708
multi method words(Str:D: $limit)
709
709
multi method words(Str:D:)
710
710
711
- Returns a list of non-whitespace bits, i.e. the same as a call to
711
+ Returns a L<C<Seq>|/type/Seq> of non-whitespace bits, i.e. the same as a call to
712
712
C<$input.comb( / \S+ /, $limit )> would.
713
713
714
714
Examples:
You can’t perform that action at this time.
0 commit comments