From 57d57237cf4fc4568cda37ed936b656ad620b349 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Mon, 2 Aug 2004 17:36:45 +0000 Subject: [PATCH] - Fix typo --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index b05c88c72f3..80333e06b2d 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