diff options
-rw-r--r-- | doc/gc.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gc.rst b/doc/gc.rst index 693f4c3a0..af849e713 100644 --- a/doc/gc.rst +++ b/doc/gc.rst @@ -162,8 +162,8 @@ you can pass ``--gc:`` on the compile command with the choosed garbage collector - ``--gc:regions`` `Stack <https://en.wikipedia.org/wiki/Memory_management#Stack_allocation>`_ based garbage collector. - ``--gc:none`` No garbage collector. -The same Nim code can compile to use any of the garbage collectors, -the Nim syntax mostly wont change from one garbage collector to another. +The same Nim code can be compiled to use any of the garbage collectors; +the Nim syntax generally will not change from one garbage collector to another. No garbage collector is used for `JavaScript and NodeJS <https://nim-lang.github.io/Nim/backends.html#backends-the-javascript-target>`_ compilation targets. `NimScript <https://nim-lang.github.io/Nim/nims.html>`_ target uses Nim VM garbage collector. |