Revert "Follow the documentation's recommendation (#10808)"

This reverts commit 1a13b3a14e.
This commit is contained in:
narimiran
2019-03-10 20:09:35 +01:00
parent 92cd07be8b
commit 44d47134f9

View File

@@ -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