Skip to content

Commit cf9ad41

Browse files
committed
fix minor typos
1 parent 3bbbb81 commit cf9ad41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Type/Proc.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
class Proc { ... }
88
9-
C<Proc> is a representation of a an invocation of an external
9+
C<Proc> is a representation of an invocation of an external
1010
process. It provides access to the input, output and error stream as well as
1111
the exit code. It is typically created through the C<run> subroutine:
1212
@@ -50,15 +50,15 @@ second command, you can do
5050
*@args
5151
) returns Proc:D
5252
53-
C<new> creates a new C<Proc> object, whereas C<run> creates one, and spwans it
53+
C<new> creates a new C<Proc> object, whereas C<run> creates one, and spawns it
5454
with the command and arguments provided in C<@args>.
5555
5656
C<$in>, C<$out> and C<$err> are the three
5757
standard streams of the to-be-launched program, and default to C<"-">, which
5858
means they inherit the stream from the parent process. Setting one (or more)
5959
of them to C<True> makes the stream available as an L<IO::Pipe> object of the
6060
same name, so for example C<$proc.out>. Or you can pass an existing
61-
L<IO::Handle> objet (for example IO::Pipe) in, in which case this handle is
61+
L<IO::Handle> object (for example IO::Pipe) in, in which case this handle is
6262
used for the stream.
6363
6464
C<$bin> controls whether the streams are handled as binary (i.e.

0 commit comments

Comments
 (0)