summary refs log tree commit diff stats
path: root/doc/gc.txt
diff options
context:
space:
mode:
authoryglukhov <yuriy.glukhov@gmail.com>2014-12-19 11:54:03 +0200
committeryglukhov <yuriy.glukhov@gmail.com>2014-12-19 11:54:03 +0200
commit8bed8efc36a2add43acec6c792504b06e6f788b9 (patch)
tree70279b8db95e0b3b40a2b0803702a2f86d04a3eb /doc/gc.txt
parentbce10ac1d3cb94d8ebb4482057752ee938a56c18 (diff)
downloadNim-8bed8efc36a2add43acec6c792504b06e6f788b9.tar.gz
Fixed typo in docs
Diffstat (limited to 'doc/gc.txt')
-rw-r--r--doc/gc.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gc.txt b/doc/gc.txt
index 9398262d9..d6e228558 100644
--- a/doc/gc.txt
+++ b/doc/gc.txt
@@ -19,7 +19,7 @@ code generation). The GC **never** scans the whole heap but it may scan the
 delta-subgraph of the heap that changed since its last run.
 
 
-The GC is only triggered in a memory allocation operation. It it not triggered
+The GC is only triggered in a memory allocation operation. It is not triggered
 by some timer and does not run in a background thread.
 
 To force a full collection call ``GC_fullCollect``. Note that it is generally