summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-02-14 11:04:43 +0100
committerAraq <rumpf_a@web.de>2019-02-14 15:55:37 +0100
commit70f0aab18835bbac748d8b95f5a93f7544380e3f (patch)
tree286e9f65a91cbf74b7b704fdef977a3dda3e4835 /lib/pure
parentd2b3046c7073bc3316127258212a5fb140de8f06 (diff)
downloadNim-70f0aab18835bbac748d8b95f5a93f7544380e3f.tar.gz
osproc: fix minor typo
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/osproc.nim2
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.