diff options
author | Ivan Maidanski <ivmai@mail.ru> | 2019-04-05 00:47:37 +0300 |
---|---|---|
committer | Ivan Maidanski <ivmai@mail.ru> | 2019-04-05 22:10:35 +0300 |
commit | 7ddeb9cd80f16fe9866fcf4b2b68ec6ac84373c1 (patch) | |
tree | 054e161cf6e6185654ea862e91ef132607861c3a /doc | |
parent | e0c5750897a28a943407e1641b4587bbbec3d699 (diff) | |
download | bdwgc-7ddeb9cd80f16fe9866fcf4b2b68ec6ac84373c1.tar.gz |
Fix typos in documentation (regarding 'non-incremental')
* doc/gcdescr.md (Introduction): Fix typos ("non-incremental",
"this operation").
* mark.c (GC_collection_in_progress): Fix a typo in comment
("non-incremental").
Diffstat (limited to 'doc')
-rw-r--r-- | doc/gcdescr.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gcdescr.md b/doc/gcdescr.md index a08a805a..cc235452 100644 --- a/doc/gcdescr.md +++ b/doc/gcdescr.md @@ -36,7 +36,7 @@ of a memory allocation: to be reachable from variables are again scanned similarly. 3. _Sweep phase_ Scans the heap for inaccessible, and hence unmarked, objects, and returns them to an appropriate free list for reuse. This is not - really a separate phase; even in non incremental mode this is operation + really a separate phase; even in non-incremental mode this operation is usually performed on demand during an allocation that discovers an empty free list. Thus the sweep phase is very unlikely to touch a page that would not have been touched shortly thereafter anyway. |