From bcd74c270b83435b7a2e4b63dc852f19f5a41eac Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 29 Apr 2008 13:50:22 +0000 Subject: [PATCH] fix spelling --- Zend/zend_gc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zend/zend_gc.c b/Zend/zend_gc.c index 0ae4a2a13f..c806952ccf 100644 --- a/Zend/zend_gc.c +++ b/Zend/zend_gc.c @@ -140,7 +140,7 @@ ZEND_API void gc_zval_possible_root(zval *zv TSRMLS_DC) GC_ZVAL_GET_COLOR(zv) == GC_BLACK) && (GC_ZVAL_ADDRESS(zv) < GC_G(buf) || GC_ZVAL_ADDRESS(zv) >= GC_G(last_unused))) { - /* The given zval is a gurbage that is going to be delated by + /* The given zval is a garbage that is going to be deleted by * currently running GC */ return; } @@ -261,7 +261,7 @@ ZEND_API void gc_remove_zval_from_buffer(zval *zv) GC_ZVAL_GET_COLOR(zv) == GC_BLACK) && (GC_ZVAL_ADDRESS(zv) < GC_G(buf) || GC_ZVAL_ADDRESS(zv) >= GC_G(last_unused))) { - /* The given zval is a gurbage that is going to be delated by + /* The given zval is a garbage that is going to be deleted by * currently running GC */ if (GC_G(next_to_free) == (zval_gc_info*)zv) { GC_G(next_to_free) = ((zval_gc_info*)zv)->u.next; -- 2.40.0