From 3173828d9eed467764910bf84ac029a6e3b09226 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 9 Jul 2006 18:03:17 +0000 Subject: [PATCH] - Reword comment --- Zend/zend_operators.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 930ef95a369..52ae2db66d5 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1579,7 +1579,7 @@ ZEND_API int compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) COMPARE_RETURN_AND_FREE(SUCCESS); } - /* If both are objects share the same comparision handler then use is */ + /* If both are objects sharing the same comparision handler then use is */ if (eq_comp) { ZVAL_LONG(result, Z_OBJ_HT_P(op1)->compare_objects(op1, op2 TSRMLS_CC)); COMPARE_RETURN_AND_FREE(SUCCESS);