From 013097e617fa632b4a0fdf1b8d78c3925a00c9d1 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 17 Apr 2011 18:12:23 -0700 Subject: [PATCH] io.launcher: fix launcher examples. --- 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 6f48cfcdc8..0e7c11b6e4 100644 --- a/basis/io/launcher/launcher-docs.factor +++ b/basis/io/launcher/launcher-docs.factor @@ -260,11 +260,11 @@ ARTICLE: "io.launcher.examples" "Launcher examples" } "Running a command, appending error messages to a log file, and reading the output for further processing:" { $code - "\"log.txt\" [" + "\"log.txt\" ascii [" " " " swap >>stderr" " \"report\" >>command" - " ascii lines sort reverse [ print ] each" + " ascii stream-lines sort reverse [ print ] each" "] with-disposal" } ;