diff options
author | Miran <narimiran@disroot.org> | 2019-02-19 17:25:03 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-02-19 17:25:03 +0100 |
commit | 50d1a46537d952bd3684bf752897f707456b0c3d (patch) | |
tree | 5a8a81a891cd9c5b9a0d940000ecddda8ff01b1a /nimsuggest/crashtester.nim | |
parent | e4a76c6ebf76170b3d3950c0ae0bb4d1e51689f2 (diff) | |
download | Nim-50d1a46537d952bd3684bf752897f707456b0c3d.tar.gz |
better docs: osproc (#10708)
* better docs: osproc * fix a typo in the docs, deprecate "demon"
Diffstat (limited to 'nimsuggest/crashtester.nim')
-rw-r--r-- | nimsuggest/crashtester.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nimsuggest/crashtester.nim b/nimsuggest/crashtester.nim index 4b3ba4026..10fef2b23 100644 --- a/nimsuggest/crashtester.nim +++ b/nimsuggest/crashtester.nim @@ -20,7 +20,7 @@ proc callNimsuggest() = let cl = parseCmdLine("nimsuggest --tester temp000.nim") var p = startProcess(command=cl[0], args=cl[1 .. ^1], options={poStdErrToStdOut, poUsePath, - poInteractive, poDemon}) + poInteractive, poDaemon}) let outp = p.outputStream let inp = p.inputStream var report = "" |