Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Two small fixes in IO::Pipe docs
* IO::Handle is a class, not a role
* typo in method name, ugexe++
  • Loading branch information
moritz committed Jul 6, 2015
1 parent 39d9449 commit d42aeab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Type/IO/Pipe.pod
Expand Up @@ -4,7 +4,7 @@
=SUBTITLE Buffered FIFO / Pipe
class IO::Pipe does IO::Handle { ... }
class IO::Pipe is IO::Handle { ... }
An C<IO::Pipe> object closely corresponds to a UNIX pipe. It has one end where
it consumes string or binary data, and another where it reproduces the same
Expand All @@ -17,7 +17,7 @@ Pipes can be easily constructed with L<sub run and Proc.new|/type/Proc>.
=head2 method proc
method prodc(IO::Pipe:) returns Proc:D
method proc(IO::Pipe:) returns Proc:D
Returns the L<Proc> object from which the pipe originates.
Expand Down

0 comments on commit d42aeab

Please sign in to comment.