Skip to content

Commit ce7fc2e

Browse files
committed
Fix typos...
1 parent 78f2a1b commit ce7fc2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/tokenizer/tokenizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void on_event(zend_php_scanner_event event, int token, int line, void *context)
194194
{
195195
if (token == END) break;
196196
/* Special cases */
197-
if (token == ';' && LANG_SCNG(yy_leng) > 1) { /* <? or <?\n or <?\r\n */
197+
if (token == ';' && LANG_SCNG(yy_leng) > 1) { /* ?> or ?>\n or ?>\r\n */
198198
token = T_CLOSE_TAG;
199199
} else if (token == T_ECHO && LANG_SCNG(yy_leng) == sizeof("<?=") - 1) {
200200
token = T_OPEN_TAG_WITH_ECHO;

0 commit comments

Comments
 (0)