diff options
Diffstat (limited to 'lib/pure')
-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 78f9a06eb..9502b679a 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -224,7 +224,7 @@ proc execProcesses*(cmds: openArray[string], beforeRunEvent: proc(idx: int) = nil, afterRunEvent: proc(idx: int, p: Process) = nil): int {.rtl, extern: "nosp$1", - tags: [ExecIOEffect, TimeEffect, ReadEnvEffect, RootEffect]} = + tags: [ExecIOEffect, TimeEffect, ReadEnvEffect, RootEffect].} = ## executes the commands `cmds` in parallel. Creates `n` processes ## that execute in parallel. The highest (absolute) return value of all processes ## is returned. Runs `beforeRunEvent` before running each command. |