From: Matt S Trout Date: Sun, 4 Apr 2010 21:07:31 +0000 (+0100) Subject: correct typo in docs - stoud to stdout X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=20f0adf397560e81cb57c756354063efb0a75880;p=p5sagit%2FIO-Pipeline.git correct typo in docs - stoud to stdout --- diff --git a/Changes b/Changes index d5c8612..0f64208 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - correct typo in docs - stoud -> stdout + 0.009002 2010-04-04 - mst is a complete idiot and got the wrong dist name in COPYRIGHT diff --git a/lib/IO/Pipeline.pm b/lib/IO/Pipeline.pm index 90bec82..b37a479 100644 --- a/lib/IO/Pipeline.pm +++ b/lib/IO/Pipeline.pm @@ -191,7 +191,7 @@ the pipe to the output until the input filehandle is exhausted. Non-completed pipeline objects are completely re-usable though - so you can (and are expected to) do things like: - my $combined_to_stoud = $combined | \*STDOUT; + my $combined_to_stdout = $combined | \*STDOUT; foreach my $file (@files_to_process) {