Skip to content

Commit 5b1783c

Browse files
committed
Reflow and de-indent before #2632
1 parent c3f2b92 commit 5b1783c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/Type/Seq.pod6

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ A typical use case is L<method C<lines> in C<IO::Handle>|/type/IO::Handle#method
2626
which could use a lot of memory if it stored all the lines read from the
2727
file. So
2828
29-
=begin code
30-
for open('README.md').lines -> $line {
31-
say $line;
32-
}
33-
=end code
29+
=begin code
30+
for open('README.md').lines -> $line {
31+
say $line;
32+
}
33+
=end code
3434
3535
won't keep all lines from the file in memory.
3636
@@ -55,9 +55,9 @@ B<Caution:> No program should ever assume a C<Seq> may only be iterated once
5555
even if not cached by the program. Caching is a volatile state exposed to the
5656
developer as an optimization. The C<Seq> may become cached by many operations,
5757
including calling C<perl> on the C<Seq> (if called prior to a non-cached
58-
iteration). From version 6.d, you C<.perl> can be called on consumed <Seq>. If a program assumes a Seq can only iterate once, but then is
59-
later changed to call one of these operations during the loop, that assumption
60-
will fail.
58+
iteration). From version 6.d, you C<.perl> can be called on consumed <Seq>. If a
59+
program assumes a Seq can only iterate once, but then is later changed to call
60+
one of these operations during the loop, that assumption will fail.
6161
6262
=head1 Methods
6363

0 commit comments

Comments
 (0)