Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marcioAlmada committed Mar 7, 2015
1 parent b1cd381 commit 39b0e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Zend/zend_compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -4957,7 +4957,7 @@ void zend_compile_use(zend_ast *ast) /* {{{ */
const char *unqualified_name;
size_t unqualified_name_len;
if (zend_get_unqualified_name(old_name, &unqualified_name, &unqualified_name_len)) {
/* The form "use A\B" is eqivalent to "use A\B as B" */
/* The form "use A\B" is equivalent to "use A\B as B" */
new_name = zend_string_init(unqualified_name, unqualified_name_len, 0);
} else {
new_name = zend_string_copy(old_name);
Expand Down

0 comments on commit 39b0e2c

Please sign in to comment.