summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 0f7fc785..2e95eb80 100644
--- a/gc.c
+++ b/gc.c
@@ -726,7 +726,7 @@ void dheap(heap_t *heap, int start, int end)
* from caching the value across function calls.
* This is needed for situations where
* - a compiler caches a variable in a register, but not entirely (the variable
- * has a backing memory location); and
+ * has a backing memory location); and
* - that location contains a stale old value of the variable, which cannot be
* garbage-collected as a result; and
* - this causes a problem, like unbounded memory growth.