diff options
author | yglukhov <yuriy.glukhov@gmail.com> | 2014-12-19 11:54:03 +0200 |
---|---|---|
committer | yglukhov <yuriy.glukhov@gmail.com> | 2014-12-19 11:54:03 +0200 |
commit | 8bed8efc36a2add43acec6c792504b06e6f788b9 (patch) | |
tree | 70279b8db95e0b3b40a2b0803702a2f86d04a3eb /doc/gc.txt | |
parent | bce10ac1d3cb94d8ebb4482057752ee938a56c18 (diff) | |
download | Nim-8bed8efc36a2add43acec6c792504b06e6f788b9.tar.gz |
Fixed typo in docs
Diffstat (limited to 'doc/gc.txt')
-rw-r--r-- | doc/gc.txt | 2 |
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 |