1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

fix spelling

This commit is contained in:
Antony Dovgal
2008-04-29 13:50:27 +00:00
parent 28b7529012
commit cacce6bc65
+2 -2
View File
@@ -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;