diff --git a/doc/Type/independent-routines.pod6 b/doc/Type/independent-routines.pod6 index 143d1518a..e31700b60 100644 --- a/doc/Type/independent-routines.pod6 +++ b/doc/Type/independent-routines.pod6 @@ -522,8 +522,8 @@ L in non-sink context: If you want to capture standard output or error instead of having it printed directly you can use the C<:out> or C<:err> arguments -respectively, which will make them available using the -L|/type/Proc> method: +, which will make them available using their respective methods: +L|/type/Proc> and L|/type/Proc/>. my $proc = run 'echo', 'Perl 6 is Great!', :out, :err; $proc.out.slurp(:close).say; # OUTPUT: «Perl 6 is Great!␤»