diff options
author | Andrey Makarov <ph.makarov@gmail.com> | 2021-11-08 15:10:01 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-08 13:10:01 +0100 |
commit | b21eb1ed36aa068cc9b0a304742e4c81b5112304 (patch) | |
tree | 87893c2032b57e89eaea898617f861d35312de2b /lib/pure/includes/osseps.nim | |
parent | b423ab138f41c24db3b168fd30f1ecce7850a170 (diff) | |
download | Nim-b21eb1ed36aa068cc9b0a304742e4c81b5112304.tar.gz |
change os.nim doc links to new style (#19102)
Diffstat (limited to 'lib/pure/includes/osseps.nim')
-rw-r--r-- | lib/pure/includes/osseps.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/includes/osseps.nim b/lib/pure/includes/osseps.nim index 10c85047b..1ea587e3c 100644 --- a/lib/pure/includes/osseps.nim +++ b/lib/pure/includes/osseps.nim @@ -37,9 +37,9 @@ const when doslikeFileSystem: '/' else: DirSep ## An alternative character used by the operating system to separate - ## pathname components, or the same as `DirSep <#DirSep>`_ if only one separator + ## pathname components, or the same as DirSep_ if only one separator ## character exists. This is set to `'/'` on Windows systems - ## where `DirSep <#DirSep>`_ is a backslash (`'\\'`). + ## where DirSep_ is a backslash (`'\\'`). PathSep* = when defined(macos) or defined(RISCOS): ',' @@ -55,7 +55,7 @@ const defined(PalmOS) or defined(MorphOS): false else: true ## True if the file system is case sensitive, false otherwise. Used by - ## `cmpPaths proc <#cmpPaths,string,string>`_ to compare filenames properly. + ## `cmpPaths proc`_ to compare filenames properly. ExeExt* = when doslikeFileSystem: "exe" |