diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-04-03 12:07:36 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-04-03 12:07:36 +0100 |
commit | a5b4c427b441fd73fe77e5a68aaa0bc7d2fe4f2c (patch) | |
tree | c4d89cdb24aaea70b46de7284c47838d4c9662b2 | |
parent | 57fa8c6d3f535acc79ef8a67a6ef7aef0c7519da (diff) | |
parent | 5793449b5a1516fa1aec3c358ad952fcf1982681 (diff) | |
download | Nim-a5b4c427b441fd73fe77e5a68aaa0bc7d2fe4f2c.tar.gz |
Merge pull request #2450 from yglukhov/docfix
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 |