summary refs log tree commit diff stats
path: root/doc/gc.rst
diff options
context:
space:
mode:
authorAndy Davidoff <disruptek@users.noreply.github.com>2019-10-22 07:54:48 -0400
committerAndreas Rumpf <rumpf_a@web.de>2019-10-22 13:54:48 +0200
commit2ccd1c34284f08ba8e4c7b5b4986de8899f60354 (patch)
treef0df2373aa373ccd08964ac92bc7b9c009f882aa /doc/gc.rst
parent38b3590e40b7267195c65168e6ff064775de4339 (diff)
downloadNim-2ccd1c34284f08ba8e4c7b5b4986de8899f60354.tar.gz
tweaked for clarity after editing to fix a typo (#12473)
Diffstat (limited to 'doc/gc.rst')
-rw-r--r--doc/gc.rst4
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.