Skip to content

Commit

Permalink
Fixed formatting of code example and a few broken method links
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Olof Hendig committed Nov 19, 2017
1 parent 16dfa87 commit 0c2a5ae
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions doc/Type/Proc/Async.pod6
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Note that you cannot call C<stdout> both with and without C<:bin> on the same
object; it will throw an exception of type L<X::Proc::Async::CharsOrBytes> if
you try.
Use L«C<.Supply>|/type/Proc::Async#method_Supply>» for merged STDOUT and STDERR.
Use L«C<.Supply>|/type/Proc::Async#method_Supply» for merged STDOUT and STDERR.
=head2 method stderr
Expand Down Expand Up @@ -192,7 +192,7 @@ Note that you cannot call C<stderr> both with and without C<:bin> on the same
object; it will throw an exception of type L<X::Proc::Async::CharsOrBytes> if
you try.
Use L«C<.Supply>|/type/Proc::Async#method_Supply>» for merged STDOUT and STDERR.
Use L«C<.Supply>|/type/Proc::Async#method_Supply» for merged STDOUT and STDERR.
=head2 method w
Expand Down Expand Up @@ -323,17 +323,17 @@ The C<:$translate-nl> option specifies whether new line endings should be
translated for to match those used by the current operating system (e.g.
C<\r\n> on Windows).
=for code
react {
with Proc::Async.new: «"$*EXECUTABLE" -e 'say 42; note 100'» {
whenever .Supply { .print } # OUTPUT: «42␤100␤»
whenever .start {}
}
=for code
react {
with Proc::Async.new: «"$*EXECUTABLE" -e 'say 42; note 100'» {
whenever .Supply { .print } # OUTPUT: «42␤100␤»
whenever .start {}
}
}
It is an error to create both binary and non-binary
L«C<.Supply>|/type/Proc::Async#method_Supply>». It is also an error
to use both L«C<.Supply>|/type/Proc::Async#method_Supply>» and either
L«C<.Supply>|/type/Proc::Async#method_Supply». It is also an error
to use both L«C<.Supply>|/type/Proc::Async#method_Supply» and either
L<stderr> or L<stdout> supplies.
=head2 method close-stdin
Expand Down

0 comments on commit 0c2a5ae

Please sign in to comment.