From: Rudi Grinberg Date: Sat, 23 Oct 2021 05:33:43 +0000 (-0600) Subject: fix: add missing vocabulary in example X-Git-Tag: 0.99~2253 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=cefe1975e5e278533e891f846b9e7773965093cc fix: add missing vocabulary in example Signed-off-by: Rudi Grinberg ps-id: 43D3A81F-4D51-46DD-AE2B-B584996C192D --- diff --git a/basis/io/launcher/launcher-docs.factor b/basis/io/launcher/launcher-docs.factor index 24f0879dc8..65bf509e41 100644 --- a/basis/io/launcher/launcher-docs.factor +++ b/basis/io/launcher/launcher-docs.factor @@ -236,7 +236,7 @@ HELP: with-process-reader { $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 ;" + "USING: io.launcher prettyprint io.encodings.utf8 ;" "\"ls -dl /etc\" utf8 [ contents ] with-process-reader ." "\"drwxr-xr-x 213 root root 12288 mar 11 18:52 /etc\\n\"" }