From 3e7bc051d4f25cbd1218b2496f6fe383606856b3 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Tue, 30 Dec 2014 15:04:34 -0800 Subject: [PATCH] io.launcher: fix docs for with-process-reader and with-process-writer. --- basis/io/launcher/launcher-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/io/launcher/launcher-docs.factor b/basis/io/launcher/launcher-docs.factor index c145e10b6f..c26ffbfeaa 100644 --- a/basis/io/launcher/launcher-docs.factor +++ b/basis/io/launcher/launcher-docs.factor @@ -224,7 +224,7 @@ HELP: with-process-reader { "encoding" "an encoding descriptor" } { "quot" quotation } } -{ $description "Launches a process and redirects its output via a pipe. The quotation is called with " { $link input-stream } " and " { $link output-stream } " rebound to this pipe." } +{ $description "Launches a process and redirects its output via a pipe. The quotation is called with " { $link input-stream } " rebound to this pipe." } { $examples { $unchecked-example "USING: io.launcher prettyprint ;" @@ -239,7 +239,7 @@ HELP: with-process-writer { "encoding" "an encoding descriptor" } { "quot" quotation } } -{ $description "Launches a process and redirects its input via a pipe. The quotation is called with " { $link input-stream } " and " { $link output-stream } " rebound to this pipe." } ; +{ $description "Launches a process and redirects its input via a pipe. The quotation is called with " { $link output-stream } " rebound to this pipe." } ; HELP: wait-for-process { $values { "process" process } { "status" object } }