From 655a27a42cd86908311335210e2c15f7ddf8ef33 Mon Sep 17 00:00:00 2001 From: Renee Date: Mon, 7 Jan 2019 08:27:17 +0100 Subject: [PATCH 1/2] Fix typo and links --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From c12710a6919b3bcb31d3a7c01bf274ce1cdebf9a Mon Sep 17 00:00:00 2001 From: Renee Date: Mon, 7 Jan 2019 08:29:48 +0100 Subject: [PATCH 2/2] Fix typo and link --- lib/System/Command.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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