From: Antony Dovgal Date: Tue, 29 Apr 2008 13:50:27 +0000 (+0000) Subject: fix spelling X-Git-Tag: BEFORE_NEW_PARAMETER_PARSE~316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cacce6bc65e8fb69379881d5d9c401b4affc32a3;p=php fix spelling --- diff --git a/Zend/zend_gc.c b/Zend/zend_gc.c index bcf7965080..67ea744bf8 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;