diff options
author | Araq <rumpf_a@web.de> | 2018-06-11 17:05:23 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-06-11 17:05:23 +0200 |
commit | 68ba13c759b11e4d1bcbfa41715d0bd8072f03db (patch) | |
tree | bfbd760d3e7fa93f55a7983341e01c1b1d74b05a /lib/pure | |
parent | 26133a33a4e61a593463fa4c62d237ab0b9ffe47 (diff) | |
parent | 657062145ba5303d68e107a6f5fc50513b9d7f49 (diff) | |
download | Nim-68ba13c759b11e4d1bcbfa41715d0bd8072f03db.tar.gz |
fixes merge conflict
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/asyncfile.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/asyncfile.nim b/lib/pure/asyncfile.nim index 1df7c3fc0..37339d3d1 100644 --- a/lib/pure/asyncfile.nim +++ b/lib/pure/asyncfile.nim @@ -91,7 +91,7 @@ proc newAsyncFile*(fd: AsyncFd): AsyncFile = proc openAsync*(filename: string, mode = fmRead): AsyncFile = ## Opens a file specified by the path in ``filename`` using - ## the specified ``mode`` asynchronously. + ## the specified FileMode ``mode`` asynchronously. when defined(windows) or defined(nimdoc): let flags = FILE_FLAG_OVERLAPPED or FILE_ATTRIBUTE_NORMAL let desiredAccess = getDesiredAccess(mode) |