cvs: ZendEngine2 / zend_gc.c
[email protected] ("Antony Dovgal")
| Newsgroups | php.zend-engine.cvs |
|---|---|
| Message-ID | <cvstony20011209477022@cvsserver> |
tony2001 Tue Apr 29 13:50:22 2008 UTC
Modified files:
/ZendEngine2 zend_gc.c
Log:
fix spelling
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_gc.c?r1=1.13&r2=1.14&diff_format=u
Index: ZendEngine2/zend_gc.c
diff -u ZendEngine2/zend_gc.c:1.13 ZendEngine2/zend_gc.c:1.14
--- ZendEngine2/zend_gc.c:1.13 Tue Apr 29 13:43:49 2008
+++ ZendEngine2/zend_gc.c Tue Apr 29 13:50:22 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_gc.c,v 1.13 2008/04/29 13:43:49 dmitry Exp $ */
+/* $Id: zend_gc.c,v 1.14 2008/04/29 13:50:22 tony2001 Exp $ */
#include "zend.h"
#include "zend_API.h"
@@ -140,7 +140,7 @@
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 @@
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;