another quickfix for os.nim documentation

This commit is contained in:
narimiran
2019-02-01 19:44:19 +01:00
parent 9bd0c2d59a
commit 237a36075a

View File

@@ -1252,9 +1252,10 @@ proc normalizePath*(path: var string) {.rtl, extern: "nos$1", tags: [], noNimScr
## * `normalizedPath proc <#normalizedPath,string>`_ for a version which returns
## a new string
runnableExamples:
var a = "a///b//..//c///d"
a.normalizePath()
assert a == "a/c/d"
when defined(posix):
var a = "a///b//..//c///d"
a.normalizePath()
assert a == "a/c/d"
path = pathnorm.normalizePath(path)
when false:
@@ -1291,7 +1292,8 @@ proc normalizedPath*(path: string): string {.rtl, extern: "nos$1", tags: [], noN
## * `absolutePath proc <#absolutePath,string>`_
## * `normalizePath proc <#normalizePath,string>`_ for the in-place version
runnableExamples:
assert normalizedPath("a///b//..//c///d") == "a/c/d"
when defined(posix):
assert normalizedPath("a///b//..//c///d") == "a/c/d"
result = pathnorm.normalizePath(path)
when defined(Windows) and not weirdTarget: