Skip to content

Commit 28fa089

Browse files
committed
Comment nitpick (nikic)
1 parent 84c8aa3 commit 28fa089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7182,7 +7182,7 @@ void zend_do_use_non_class(znode *ns_name, znode *new_name, int is_global, const
71827182
lcname = zend_str_tolower_dup(Z_STRVAL_P(name), Z_STRLEN_P(name));
71837183

71847184
if (CG(current_namespace)) {
7185-
/* Prefix import name with current namespace name to avoid conflicts with classes */
7185+
/* Prefix import name with current namespace name to avoid conflicts with functions/consts */
71867186
char *c_ns_name = emalloc(Z_STRLEN_P(CG(current_namespace)) + 1 + Z_STRLEN_P(name) + 1);
71877187

71887188
zend_str_tolower_copy(c_ns_name, Z_STRVAL_P(CG(current_namespace)), Z_STRLEN_P(CG(current_namespace)));

0 commit comments

Comments
 (0)