Fixed typo and white spaces

This commit is contained in:
Dmitry Stogov 2015-02-18 10:17:26 +03:00
parent 96de5ffc8d
commit 8473157fbb
2 changed files with 19 additions and 19 deletions

View file

@ -450,13 +450,13 @@ ZEND_API void zend_ast_apply(zend_ast *ast, zend_ast_apply_func fn) {
* ====================
* proirity associativity operatiers
* -----------------------------------
* 10 left inclue, include_once, eval, require, require_once
* 10 left include, include_once, eval, require, require_once
* 20 left ,
* 30 left or
* 40 left xor
* 50 left and
* 60 right print
* 70 right yield
* 70 right yield
* 80 right =>
* 90 right = += -= *= /= .= %= &= |= ^= <<= >>= **=
* 100 left ? :
@ -687,7 +687,7 @@ static void zend_ast_export_stmt(smart_str *str, zend_ast *ast, int indent)
static void zend_ast_export_zval(smart_str *str, zval *zv, int priority, int indent)
{
zend_long idx;
zend_long idx;
zend_string *key;
zval *val;
int first;