diff options
Diffstat (limited to 'lib/system.nim')
-rwxr-xr-x | lib/system.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index e35d2914f..4a1bde56a 100755 --- a/lib/system.nim +++ b/lib/system.nim @@ -1961,11 +1961,11 @@ when not defined(EcmaScript) and not defined(NimrodVM): ## for debug builds. when hostOS != "standalone": proc getStackTrace*(): string - ## gets the current stack trace. This is only works for debug builds. + ## gets the current stack trace. This only works for debug builds. proc getStackTrace*(e: ref E_Base): string ## gets the stack trace associated with `e`, which is the stack that - ## lead to the ``raise`` statement. This is only works for debug builds. + ## lead to the ``raise`` statement. This only works for debug builds. {.push stack_trace: off, profiler:off.} when hostOS == "standalone": |