diff options
author | yglukhov <yuriy.glukhov@gmail.com> | 2015-04-03 13:38:10 +0300 |
---|---|---|
committer | yglukhov <yuriy.glukhov@gmail.com> | 2015-04-03 13:38:10 +0300 |
commit | 5793449b5a1516fa1aec3c358ad952fcf1982681 (patch) | |
tree | c4d89cdb24aaea70b46de7284c47838d4c9662b2 | |
parent | 57fa8c6d3f535acc79ef8a67a6ef7aef0c7519da (diff) | |
download | Nim-5793449b5a1516fa1aec3c358ad952fcf1982681.tar.gz |
Doc fix: TProcessOption -> ProcessOption
-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 cd3700019..eb7ad64bb 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -137,7 +137,7 @@ proc startProcess*(command: string, ## `env` is the environment that will be passed to the process. ## If ``env == nil`` the environment is inherited of ## the parent process. `options` are additional flags that may be passed - ## to `startProcess`. See the documentation of ``TProcessOption`` for the + ## to `startProcess`. See the documentation of ``ProcessOption`` for the ## meaning of these flags. You need to `close` the process when done. ## ## Note that you can't pass any `args` if you use the option |