diff options
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/io.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/system/io.nim b/lib/system/io.nim index 888ff8e7f..89ceb4ea2 100644 --- a/lib/system/io.nim +++ b/lib/system/io.nim @@ -667,10 +667,10 @@ when defined(windows) and appType == "console" and proc readFile*(filename: string): TaintedString {.tags: [ReadIOEffect], benign.} = ## Opens a file named `filename` for reading, calls `readAll - ## <#readAll>`_ and closes the file afterwards. Returns the string. - ## Raises an IO exception in case of an error. If # you need to call + ## <#readAll,File>`_ and closes the file afterwards. Returns the string. + ## Raises an IO exception in case of an error. If you need to call ## this inside a compile time macro you can use `staticRead - ## <#staticRead>`_. + ## <system.html#staticRead,string>`_. var f: File if open(f, filename): try: |