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:
Timothee Cour
2021-05-01 15:26:41 -07:00
committed by GitHub
parent 13b57524d3
commit 78e2d299df
16 changed files with 38 additions and 38 deletions

View File

@@ -94,5 +94,5 @@ block: # typeof(stmt)
doAssert not compiles(bad1())
block:
template bad2 = echo (nonexistant; discard)
template bad2 = echo (nonexistent; discard)
doAssert not compiles(bad2())