diff --git a/README b/README index 4940cfb..5c6c7b0 100644 --- a/README +++ b/README @@ -15,7 +15,7 @@ SYNOPSIS # $cmd is basically a hash, with keys / accessors $cmd->stdin(); # filehandle to the process stdin (write) $cmd->stdout(); # filehandle to the process stdout (read) - $cmd->stderr(); # filehandle to the process stdout (read) + $cmd->stderr(); # filehandle to the process stderr (read) $cmd->pid(); # pid of the child process # done! @@ -68,7 +68,7 @@ You can also look for information at: http://cpanratings.perl.org/d/System-Command Search CPAN - http://search.cpan.org/dist/System-Command/ + https://metacpan.org/pod/System::Command/ LICENSE AND COPYRIGHT diff --git a/lib/System/Command.pm b/lib/System/Command.pm index 7b6a8a8..24c9d6c 100644 --- a/lib/System/Command.pm +++ b/lib/System/Command.pm @@ -399,7 +399,7 @@ System::Command - Object for running system commands # $cmd is basically a hash, with keys / accessors $cmd->stdin(); # filehandle to the process stdin (write) $cmd->stdout(); # filehandle to the process stdout (read) - $cmd->stderr(); # filehandle to the process stdout (read) + $cmd->stderr(); # filehandle to the process stderr (read) $cmd->pid(); # pid of the child process # find out if the child process died @@ -793,7 +793,7 @@ L =item * Search CPAN -L +L =back