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" } ;