We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 061f354 commit fe08317Copy full SHA for fe08317
lib/system/jssys.nim
@@ -75,7 +75,7 @@ proc setCurrentException*(exc: ref Exception) =
75
proc pushCurrentException(e: sink(ref Exception)) {.compilerRtl, inline.} =
76
## Used to set up exception handling for closure iterators.
77
78
- # XXX Shouldn't there be execption stack like in excpt.nim?
+ # XXX Shouldn't there be exception stack like in excpt.nim?
79
setCurrentException(e)
80
81
proc auxWriteStackTrace(f: PCallFrame): string =
tests/iter/tyieldintry.nim
@@ -200,7 +200,7 @@ block: # Wrong except
200
201
testExc(it, 0, 1)
202
203
-block: # Nexted except without finally
+block: # Nested except without finally
204
iterator it(): int {.closure.} =
205
try:
206
0 commit comments