summaryrefslogtreecommitdiff
path: root/ext/tokenizer/tokenizer.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2018-06-18 12:14:17 +0800
committerXinchen Hui <laruence@gmail.com>2018-06-18 12:14:17 +0800
commit83a77f5a285f2d0b51781d2437311836d5631744 (patch)
tree5a1b8aadd4106646e52f3fb04325d3832e6abe34 /ext/tokenizer/tokenizer.c
parent7f196c45efd14e5f72d3a5d0f9153e23bb20a777 (diff)
downloadphp-git-83a77f5a285f2d0b51781d2437311836d5631744.tar.gz
Fixed typo
Diffstat (limited to 'ext/tokenizer/tokenizer.c')
-rw-r--r--ext/tokenizer/tokenizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tokenizer/tokenizer.c b/ext/tokenizer/tokenizer.c
index cb68fd4087..66d6ba7262 100644
--- a/ext/tokenizer/tokenizer.c
+++ b/ext/tokenizer/tokenizer.c
@@ -193,7 +193,7 @@ void on_event(zend_php_scanner_event event, int token, int line, void *context)
case ON_TOKEN:
{
if (token == END) break;
- /* Specical cases */
+ /* Special cases */
if (token == ';' && LANG_SCNG(yy_leng) == sizeof("?>") - 1) {
token = T_CLOSE_TAG;
} else if (token == T_ECHO && LANG_SCNG(yy_leng) == sizeof("<?=") - 1) {