diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-10-27 18:16:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 12:16:27 +0200 |
commit | c341f204762f002e657b5914921fe1fa8125f468 (patch) | |
tree | 0783cc788aab66f193d5ab4837738f8ae0d65969 /lib/std/files.nim | |
parent | 5a14b9ea1fdc8845fb36028385f22aeb20a1ddd7 (diff) | |
download | Nim-c341f204762f002e657b5914921fe1fa8125f468.tar.gz |
cleanup os related documentation links (#20663)
cleanup documentation links
Diffstat (limited to 'lib/std/files.nim')
-rw-r--r-- | lib/std/files.nim | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/std/files.nim b/lib/std/files.nim index f7fbd5acd..5bc7f7965 100644 --- a/lib/std/files.nim +++ b/lib/std/files.nim @@ -19,9 +19,7 @@ proc removeFile*(file: Path) {.inline, tags: [WriteDirEffect].} = ## On Windows, ignores the read-only attribute. ## ## See also: - ## * `removeDir proc`_ - ## * `copyFile proc`_ - ## * `copyFileWithPermissions proc`_ + ## * `removeDir proc <dirs.html#removeDir>`_ ## * `moveFile proc`_ removeFile(file.string) @@ -38,8 +36,6 @@ proc moveFile*(source, dest: Path) {.inline, ## Can be used to `rename files`:idx:. ## ## See also: - ## * `moveDir proc`_ - ## * `copyFile proc`_ - ## * `copyFileWithPermissions proc`_ + ## * `moveDir proc <dirs.html#moveDir>`_ ## * `removeFile proc`_ moveFile(source.string, dest.string) |