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 | |
parent | c05d1aab13dab0cc5e8337cb032dc580d2379d68 (diff) | |
download | Nim-25c75752d07fccc00682890875f3ce6c13f61d90.tar.gz |
remove quotation marks around imports - fixes links in the docs (#16888)
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/asyncfutures.nim | 2 | ||||
-rw-r--r-- | lib/pure/pathnorm.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/asyncfutures.nim b/lib/pure/asyncfutures.nim index 2333c5ef1..1a3b901df 100644 --- a/lib/pure/asyncfutures.nim +++ b/lib/pure/asyncfutures.nim @@ -9,7 +9,7 @@ import os, tables, strutils, times, heapqueue, options, deques, cstrutils -import "system/stacktraces" +import system/stacktraces # TODO: This shouldn't need to be included, but should ideally be exported. type 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 |