mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 13:30:33 +00:00
remove quotation marks around imports - fixes links in the docs (#16888)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1738,8 +1738,8 @@ proc compiles*(x: untyped): bool {.magic: "Compiles", noSideEffect, compileTime.
|
||||
discard
|
||||
|
||||
when notJSnotNims:
|
||||
import "system/ansi_c"
|
||||
import "system/memory"
|
||||
import system/ansi_c
|
||||
import system/memory
|
||||
|
||||
|
||||
{.push stackTrace: off.}
|
||||
|
||||
Reference in New Issue
Block a user