File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -712,10 +712,10 @@ Defined as:
712
712
multi method slurp-rest(IO::Handle:D: :$bin! --> Buf)
713
713
multi method slurp-rest(IO::Handle:D: :$enc --> Str)
714
714
715
- B < DEPRECATION NOTICE: > this method will be deprecated in C < 6.d > language. Do
715
+ B < DEPRECATION NOTICE: > this method is deprecated in C < 6.d > language. Do
716
716
not use it for new code. Use L « C < .slurp > method|/routine/slurp» instead.
717
717
718
- Return the remaining content of the file from the current file position (which
718
+ Returns the remaining content of the file from the current file position (which
719
719
may have been set by previous reads or by C < seek > .) If the adverb C < :bin > is
720
720
provided a L < Buf > will be returned; otherwise the return will be a C < Str > with
721
721
the optional encoding C < :enc > .
@@ -1039,4 +1039,4 @@ See also the related role L<IO> and the related class L<IO::Path>.
1039
1039
1040
1040
= end pod
1041
1041
1042
- # vim: expandtab shiftwidth=4 ft=perl6
1042
+ # vim: expandtab shiftwidth=4 ft=perl6
Original file line number Diff line number Diff line change @@ -43,7 +43,8 @@ my $captured-output = $p.out.slurp: :close;
43
43
my $captured-error = $p.err.slurp: :close;
44
44
my $exit-code = $p.exitcode;
45
45
46
- B < Note: > Versions of L < Rakudo|/language/glossary#Rakudo > older than 2017.04 do not have C < .slurp > available on L < IO::Pipe > objects; use
46
+ B < Note: > Versions of L < Rakudo|/language/glossary#Rakudo > older than 2017.04 do
47
+ not have C < .slurp > available on L < IO::Pipe > objects; use
47
48
L « C < .slurp-rest > |/routine/slurp-rest» instead.
48
49
49
50
Use L < Proc::Async|/type/Proc::Async > for non-blocking operations.
You can’t perform that action at this time.
0 commit comments