Skip to content

Commit ca19bc5

Browse files
committed
link to Proc::Async
1 parent 3719d5f commit ca19bc5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

doc/Type/IO.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ To capture output you can use the C<:out> argument:
325325
my $proc = run 'echo', 'Perl 6 is Great!', :out;
326326
say $proc.out.get; # OUTPUT: Perl 6 is Great!
327327
328-
See L<Proc|/type/Proc> for more details.
328+
See L<Proc|/type/Proc> and L<Proc::Async|/type/Proc::Async> for more details.
329329
330330
=head2 sub shell
331331

doc/Type/Proc.pod6

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ to C<True>, which will make the pipe available via C<.in> method on the C<Proc>:
3232
# OUTPUT: «1 Hello,␤
3333
# 2 world!␤»
3434
35+
Use L<Proc::Async|/type/Proc::Async> for non-blocking operations.
36+
3537
=head1 Methods
3638
3739
=head2 method new

0 commit comments

Comments
 (0)