diff options
author | Peter J. Acklam) (via RT <perlbug-followup@perl.org> | 2011-01-06 23:12:20 -0800 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2011-01-07 11:06:41 +0100 |
commit | b7b1e41b767189c1e8835fba238082ba120976b6 (patch) | |
tree | f37b363c8b0c777e668d48f1a10b3708481339e8 /ext/IPC-Open3 | |
parent | ed0436dcef2045079d794c497f3ca20bc041b79e (diff) | |
download | perl-b7b1e41b767189c1e8835fba238082ba120976b6.tar.gz |
Fix typos (spelling errors) in ext/*.
# New Ticket Created by (Peter J. Acklam)
# Please include the string: [perl #81882]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81882 >
Signed-off-by: Abigail <abigail@abigail.be>
Diffstat (limited to 'ext/IPC-Open3')
-rw-r--r-- | ext/IPC-Open3/lib/IPC/Open3.pm | 2 | ||||
-rw-r--r-- | ext/IPC-Open3/t/IPC-Open3.t | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/IPC-Open3/lib/IPC/Open3.pm b/ext/IPC-Open3/lib/IPC/Open3.pm index 658a12efeb..983d1a662e 100644 --- a/ext/IPC-Open3/lib/IPC/Open3.pm +++ b/ext/IPC-Open3/lib/IPC/Open3.pm @@ -172,7 +172,7 @@ sub xclose_on_exec { } # I tried using a * prototype character for the filehandle but it still -# disallows a bearword while compiling under strict subs. +# disallows a bareword while compiling under strict subs. sub xopen { open $_[0], $_[1] or croak "$Me: open($_[0], $_[1]) failed: $!"; diff --git a/ext/IPC-Open3/t/IPC-Open3.t b/ext/IPC-Open3/t/IPC-Open3.t index 9bc80da1dc..a29b5509f9 100644 --- a/ext/IPC-Open3/t/IPC-Open3.t +++ b/ext/IPC-Open3/t/IPC-Open3.t @@ -147,7 +147,7 @@ else { $TB->current_test($test); # RT 72016 -eval{$pid = open3 'WRITE', 'READ', 'ERROR', '/non/existant/program'; }; +eval{$pid = open3 'WRITE', 'READ', 'ERROR', '/non/existent/program'; }; if (IPC::Open3::DO_SPAWN) { if ($@) { cmp_ok(waitpid($pid, 0), '>', 0); |