diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system.nim | 4 | ||||
-rw-r--r-- | lib/system/helpers.nim | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/system.nim b/lib/system.nim index d41953108..f6987aa62 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -2769,8 +2769,8 @@ when not defined(nimscript) and hasAlloc: when not defined(JS) and not defined(nimscript) and hasAlloc: proc nimGC_setStackBottom*(theStackBottom: pointer) {.compilerRtl, noinline, benign.} - ## Expands operating GC stack range to `theStackBottom`. Does nothing - ## if current stack bottom is already lower than `theStackBottom`. + ## Expands operating GC stack range to `theStackBottom`. Does nothing + ## if current stack bottom is already lower than `theStackBottom`. else: template GC_disable* = diff --git a/lib/system/helpers.nim b/lib/system/helpers.nim index fb1218684..7b2b32679 100644 --- a/lib/system/helpers.nim +++ b/lib/system/helpers.nim @@ -1,5 +1,5 @@ -## helpers used system.nim and other modules, avoids code duplication while -## also minimizing symbols exposed in system.nim +# helpers used system.nim and other modules, avoids code duplication while +# also minimizing symbols exposed in system.nim # # TODO: move other things here that should not be exposed in system.nim |