diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2020-03-31 10:47:57 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 15:47:57 +0200 |
commit | 42d2c3088e1f869148fd6eb1fdce2b33f859dc2d (patch) | |
tree | 97e1d206722f5ab1c71161addc085efe8713870b /lib/posix | |
parent | 1e4093d949ab015cd1e3e62cf0f47d83ef0bca38 (diff) | |
download | Nim-42d2c3088e1f869148fd6eb1fdce2b33f859dc2d.tar.gz |
Add Documentation (#13811)
* Add more Docs and runnableExamples
Diffstat (limited to 'lib/posix')
-rw-r--r-- | lib/posix/posix_utils.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/posix/posix_utils.nim b/lib/posix/posix_utils.nim index 20a71971a..5600a5db5 100644 --- a/lib/posix/posix_utils.nim +++ b/lib/posix/posix_utils.nim @@ -98,4 +98,3 @@ proc mkdtemp*(prefix: string): string = if mkdtemp(tmpl) == nil: raise newException(OSError, $strerror(errno)) return $tmpl - |