diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2018-12-19 02:25:50 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-12-19 11:25:50 +0100 |
commit | 37cb5e8f532be0ffe82400d297b80ea9dd90494a (patch) | |
tree | 0ab736c8bd78efc83db0f2d29919fd467ee76110 | |
parent | 3300c8a500d0b730507180746278ecbd2a1ac1d0 (diff) | |
download | Nim-37cb5e8f532be0ffe82400d297b80ea9dd90494a.tar.gz |
Update osproc.nim (#10043)
-rw-r--r-- | lib/pure/osproc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index b2239b9c5..72581f47c 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -229,7 +229,7 @@ proc execProcesses*(cmds: openArray[string], {.rtl, extern: "nosp$1", tags: [ExecIOEffect, TimeEffect, ReadEnvEffect, RootEffect]} = ## executes the commands `cmds` in parallel. Creates `n` processes - ## that execute in parallel. The highest return value of all processes + ## that execute in parallel. The highest (absolute) return value of all processes ## is returned. Runs `beforeRunEvent` before running each command. assert n > 0 |