diff options
author | Araq <rumpf_a@web.de> | 2015-06-30 12:08:09 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-06-30 12:20:01 +0200 |
commit | 5fcb7ca3134e0b584d9514e580b5a900e5c3af69 (patch) | |
tree | 1f2184e9a4ece6bcdc8b43300f0978a65abca663 /lib/pure | |
parent | 39f549d06a095f1797f4547c1a964408f92a890a (diff) | |
download | Nim-5fcb7ca3134e0b584d9514e580b5a900e5c3af69.tar.gz |
True is true
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/os.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index f4796433d..7ba48651e 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -81,7 +81,7 @@ when defined(Nimdoc): # only for proper documentation: ## Windows. FileSystemCaseSensitive* = true - ## True if the file system is case sensitive, false otherwise. Used by + ## true if the file system is case sensitive, false otherwise. Used by ## `cmpPaths` to compare filenames properly. ExeExt* = "" @@ -817,7 +817,7 @@ when defined(Windows): proc sameFile*(path1, path2: string): bool {.rtl, extern: "nos$1", tags: [ReadDirEffect].} = - ## Returns True if both pathname arguments refer to the same physical + ## Returns true if both pathname arguments refer to the same physical ## file or directory. Raises an exception if any of the files does not ## exist or information about it can not be obtained. ## @@ -857,7 +857,7 @@ proc sameFile*(path1, path2: string): bool {.rtl, extern: "nos$1", proc sameFileContent*(path1, path2: string): bool {.rtl, extern: "nos$1", tags: [ReadIOEffect].} = - ## Returns True if both pathname arguments refer to files with identical + ## Returns true if both pathname arguments refer to files with identical ## binary content. const bufSize = 8192 # 8K buffer |