From: Andi Gutmans Date: Mon, 2 Aug 2004 17:36:45 +0000 (+0000) Subject: - Fix typo X-Git-Tag: PRE_ZEND_VM_DISPATCH_PATCH~275 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57d57237cf4fc4568cda37ed936b656ad620b349;p=php - Fix typo --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index b05c88c72f..80333e06b2 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1099,7 +1099,7 @@ void zend_do_end_function_declaration(znode *function_token TSRMLS_DC) pass_two(CG(active_op_array) TSRMLS_CC); /* we don't care if the function name is longer, in fact lowercasing only - * the beginning of the name speeds up th echeck process */ + * the beginning of the name speeds up the check process */ name_len = strlen(CG(active_op_array)->function_name); zend_str_tolower_copy(lcname, CG(active_op_array)->function_name, MIN(name_len, sizeof(lcname)-1)); lcname[sizeof(lcname)-1] = '\0'; // zend_str_tolower_copy won't necessarily set the zero byte