diff options
author | Hans Raaf <hara@oderwat.de> | 2016-07-21 15:08:42 +0200 |
---|---|---|
committer | Hans Raaf <hara@oderwat.de> | 2016-07-21 20:09:33 +0200 |
commit | e412e5458c5031086def6698aeb3b5ed57b6be82 (patch) | |
tree | 9060afa0f6907ff4cf7d80c566dacb95a2ce48e4 /lib/pure | |
parent | 5f623ea9ef7fcd35fb6a5ae44074b8c66cb20fcf (diff) | |
download | Nim-e412e5458c5031086def6698aeb3b5ed57b6be82.tar.gz |
Small changes to the docs to make it easier to find stuff.
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index 5611b8f0c..9eb4cf57d 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -336,7 +336,7 @@ proc setCurrentDir*(newDir: string) {.inline, tags: [].} = proc expandFilename*(filename: string): string {.rtl, extern: "nos$1", tags: [ReadDirEffect].} = - ## Returns the full path of `filename`, raises OSError in case of an error. + ## Returns the full (`absolute`:idx:) path of the file `filename`, raises OSError in case of an error. when defined(windows): const bufsize = 3072'i32 when useWinUnicode: |