diff options
author | Araq <rumpf_a@web.de> | 2019-02-14 11:04:43 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-02-14 15:55:37 +0100 |
commit | 70f0aab18835bbac748d8b95f5a93f7544380e3f (patch) | |
tree | 286e9f65a91cbf74b7b704fdef977a3dda3e4835 /lib/pure | |
parent | d2b3046c7073bc3316127258212a5fb140de8f06 (diff) | |
download | Nim-70f0aab18835bbac748d8b95f5a93f7544380e3f.tar.gz |
osproc: fix minor typo
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. |