summaryrefslogtreecommitdiff
path: root/Zend/zend_gc.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2008-04-29 13:50:22 +0000
committerAntony Dovgal <tony2001@php.net>2008-04-29 13:50:22 +0000
commitbcd74c270b83435b7a2e4b63dc852f19f5a41eac (patch)
treec49bf4853596610588afa1407c1c37b09b6f82bc /Zend/zend_gc.c
parent2396f40eb54176170395f38b01c0287dfc7386f4 (diff)
downloadphp-git-bcd74c270b83435b7a2e4b63dc852f19f5a41eac.tar.gz
fix spelling
Diffstat (limited to 'Zend/zend_gc.c')
-rw-r--r--Zend/zend_gc.c4
1 files 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;