diff options
author | Araq <rumpf_a@web.de> | 2019-01-11 18:36:20 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-11 22:17:43 +0100 |
commit | 647066e378bdbc85646dd88ea90eb15eddbbbc50 (patch) | |
tree | 9516520eda2735b218a0a93f3d48c6857c363a0e /lib/system | |
parent | 56b804a283a69baa4887eaf300c353a5748f86a4 (diff) | |
download | Nim-647066e378bdbc85646dd88ea90eb15eddbbbc50.tar.gz |
make the stdlib work with the changed docgen
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/gc_common.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/gc_common.nim b/lib/system/gc_common.nim index 565453298..ebd3dada2 100644 --- a/lib/system/gc_common.nim +++ b/lib/system/gc_common.nim @@ -418,7 +418,7 @@ proc prepareDealloc(cell: PCell) = decTypeSize(cell, t) proc deallocHeap*(runFinalizers = true; allowGcAfterwards = true) = - ## Frees the thread local heap. Runs every finalizer if ``runFinalizers``` + ## Frees the thread local heap. Runs every finalizer if ``runFinalizers`` ## is true. If ``allowGcAfterwards`` is true, a minimal amount of allocation ## happens to ensure the GC can continue to work after the call ## to ``deallocHeap``. |