]> granicus.if.org Git - gc/commitdiff
Fix typos in documentation (regarding 'non-incremental')
authorIvan Maidanski <ivmai@mail.ru>
Thu, 4 Apr 2019 21:47:37 +0000 (00:47 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Sat, 6 Apr 2019 06:21:34 +0000 (09:21 +0300)
(a cherry-pick of commit 7ddeb9cd from 'release-8_0')

* doc/gcdescr.html (Introduction): Fix typos ("non-incremental",
"this operation").
* mark.c (GC_collection_in_progress): Fix a typo in comment
("non-incremental").

doc/gcdescr.html
mark.c

index cc022664e3f5d2f2290658da3f52d0f7463efaab..ee52edd86e84040471489fe1672675b7a9239edc 100644 (file)
@@ -51,7 +51,7 @@ variables are again scanned similarly.
 <LI>
 <I>Sweep phase</i> 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
+not 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.
diff --git a/mark.c b/mark.c
index 28098829c4933c7be94ab52ee4df33da0911fd8d..2bc7b2fb9973b34dafbf1ecde158b41c21615351 100644 (file)
--- a/mark.c
+++ b/mark.c
@@ -120,7 +120,7 @@ STATIC GC_bool GC_objects_are_marked = FALSE;
                 /* Are there collectible marked objects in the heap?    */
 
 /* Is a collection in progress?  Note that this can return true in the  */
-/* nonincremental case, if a collection has been abandoned and the      */
+/* non-incremental case, if a collection has been abandoned and the     */
 /* mark state is now MS_INVALID.                                        */
 GC_INNER GC_bool GC_collection_in_progress(void)
 {