diff --git a/lib/pure/os.nim b/lib/pure/os.nim index e9408f8262..434fc3a26e 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -22,6 +22,7 @@ runnableExamples: assert myFile.changeFileExt("c") == "/path/to/my/file.c" ## **See also:** +## * `paths `_ and `files `_ modules for high-level file manipulation ## * `osproc module `_ for process communication beyond ## `execShellCmd proc`_ ## * `uri module `_ diff --git a/lib/std/files.nim b/lib/std/files.nim index 138bb5234e..b2161218b6 100644 --- a/lib/std/files.nim +++ b/lib/std/files.nim @@ -1,4 +1,7 @@ ## This module implements file handling. +## +## **See also:** +## * `paths module `_ for path manipulation from paths import Path, ReadDirEffect, WriteDirEffect diff --git a/lib/std/paths.nim b/lib/std/paths.nim index c290969827..f675e7445a 100644 --- a/lib/std/paths.nim +++ b/lib/std/paths.nim @@ -1,4 +1,7 @@ ## This module implements path handling. +## +## **See also:** +## * `files module `_ for file access import std/private/osseps export osseps