From 44d47134f9074dbaf6720af451d402c9f0e53cea Mon Sep 17 00:00:00 2001 From: narimiran Date: Sun, 10 Mar 2019 20:09:35 +0100 Subject: [PATCH] Revert "Follow the documentation's recommendation (#10808)" This reverts commit 1a13b3a14eafc35615c7e9f1b72b3ab646fa7550. --- lib/pure/osproc.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index f3b9c15453..19d26f2eb7 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -97,8 +97,7 @@ proc execProcess*(command: string, ## Example: ## ## .. code-block:: Nim - ## let outp = execProcess("/usr/bin/env", ["nim", "c", "-r", "mytestfile.nim"], option={}) - ## let outp_shell = execProcess("nim c -r mytestfile.nim") + ## let outp = execProcess("nim c -r mytestfile.nim") ## # Note: outp may have an interleave of text from the nim compile ## # and any output from mytestfile when it runs