diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2018-12-18 22:39:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-18 22:39:08 -0800 |
commit | 7b9ba71b47efb5fa0a3d4ea852bf11c57ca0be04 (patch) | |
tree | f3b4f982df5c222d6a971c0d7ad199b7fab91e67 | |
parent | 264627a6575797a52fc108599f7295b8a2aadb37 (diff) | |
download | Nim-7b9ba71b47efb5fa0a3d4ea852bf11c57ca0be04.tar.gz |
Update osproc.nim
-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..85460bd67 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 return absolute value of all processes ## is returned. Runs `beforeRunEvent` before running each command. assert n > 0 |