mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-28 03:16:32 +00:00
typo: nonexistant => nonexistent (#17918)
* typo: nonexistant => nonexistent * fix test (ordering differs because of https://github.com/nim-lang/Nim/issues/17910)
This commit is contained in:
@@ -93,7 +93,7 @@ when true: # runnableExamples with rdoccmd
|
||||
|
||||
template fun3Impl(): untyped =
|
||||
runnableExamples(rdoccmd="-d:foo"):
|
||||
nonexistant
|
||||
nonexistent
|
||||
# bugfix: this shouldn't be semchecked when `runnableExamples`
|
||||
# has more than 1 argument
|
||||
discard
|
||||
@@ -126,7 +126,7 @@ runnableExamples:
|
||||
|
||||
block:
|
||||
template fn(body: untyped): untyped = true
|
||||
doAssert(fn do: nonexistant)
|
||||
doAssert(fn do: nonexistent)
|
||||
import std/macros
|
||||
macro foo*(x, y) =
|
||||
result = newLetStmt(x[0][0], x[0][1])
|
||||
|
||||
Reference in New Issue
Block a user