correct typo in docs - stoud to stdout
Matt S Trout [Sun, 4 Apr 2010 21:07:31 +0000 (22:07 +0100)]
Changes
lib/IO/Pipeline.pm

diff --git a/Changes b/Changes
index d5c8612..0f64208 100644 (file)
--- 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
 
index 90bec82..b37a479 100644 (file)
@@ -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) {