Skip to content

Commit

Permalink
Pod6 ne Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Oct 9, 2016
1 parent 4c836a4 commit a47828f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Type/Proc.pod6
Expand Up @@ -22,8 +22,8 @@ second command, you can do
my $p2 = run 'cat', '-n', :in($p1.out), :out;
say $p2.out.get;
You can also feed the `:in` pipe directly from your program, by setting it
to `True`, which will make the pipe available via `.in` method on the C<Proc>:
You can also feed the C<:in> pipe directly from your program, by setting it
to C<True>, which will make the pipe available via C<.in> method on the C<Proc>:
my $p = run "cat", "-n", :in, :out;
$p.in.say: "Hello,\nworld!";
Expand Down

0 comments on commit a47828f

Please sign in to comment.