mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
another quickfix for os.nim documentation
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user