summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index a9210f569c..1b0a20d079 100644
--- a/io.c
+++ b/io.c
@@ -4759,7 +4759,7 @@ pop_last_hash(int *argc_p, VALUE *argv)
*
* # merge standard output and standard error using
* # spawn option. See the document of Kernel.spawn.
- * ls_io = IO.popen(["ls", "/", STDERR=>[:child, STDOUT]])
+ * ls_io = IO.popen(["ls", "/", :err=>[:child, :out]])
* ls_result_with_error = ls_io.read
*
* Raises exceptions which <code>IO.pipe</code> and