diff options
author | Miran <narimiran@disroot.org> | 2021-02-01 06:50:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-01 06:50:23 +0100 |
commit | 25c75752d07fccc00682890875f3ce6c13f61d90 (patch) | |
tree | 988314b663ecc7e74250ca51d1923267a6d1e261 /lib/pure/pathnorm.nim | |
parent | c05d1aab13dab0cc5e8337cb032dc580d2379d68 (diff) | |
download | Nim-25c75752d07fccc00682890875f3ce6c13f61d90.tar.gz |
remove quotation marks around imports - fixes links in the docs (#16888)
Diffstat (limited to 'lib/pure/pathnorm.nim')
-rw-r--r-- | lib/pure/pathnorm.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/pathnorm.nim b/lib/pure/pathnorm.nim index 7834f8d95..a7da821d6 100644 --- a/lib/pure/pathnorm.nim +++ b/lib/pure/pathnorm.nim @@ -14,7 +14,7 @@ # Yes, this uses import here, not include so that # we don't end up exporting these symbols from pathnorm and os: -import "includes/osseps" +import includes/osseps type PathIter* = object |