diff options
author | Araq <rumpf_a@web.de> | 2011-07-24 23:07:40 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-07-24 23:07:40 +0200 |
commit | ef039a132580c2b4135146dea5df6e2c90896329 (patch) | |
tree | b128d835ebff85cb282979632ccf13a27df7893d /lib/pure | |
parent | a6daf7152026fb8ab9b5aee17355e23b46d2e987 (diff) | |
download | Nim-ef039a132580c2b4135146dea5df6e2c90896329.tar.gz |
doc improvements; added lazarus example
Diffstat (limited to 'lib/pure')
-rwxr-xr-x | lib/pure/osproc.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 6add08d26..0beaf710f 100755 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -96,13 +96,13 @@ proc peekExitCode*(p: PProcess): int ## return -1 if the process is still running. Otherwise the process' exit code proc inputStream*(p: PProcess): PStream {.rtl, extern: "nosp$1".} - ## returns ``p``'s input stream for writing to + ## opens ``p``'s input stream for writing to proc outputStream*(p: PProcess): PStream {.rtl, extern: "nosp$1".} - ## returns ``p``'s output stream for reading from + ## opens ``p``'s output stream for reading from proc errorStream*(p: PProcess): PStream {.rtl, extern: "nosp$1".} - ## returns ``p``'s output stream for reading from + ## opens ``p``'s output stream for reading from when defined(macosx) or defined(bsd): const |