diff options
author | Veres Lajos <vlajos@gmail.com> | 2014-11-20 20:00:07 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-11-23 14:52:47 -0800 |
commit | 06fdf359e3217f795fded77e337d5417426b8d64 (patch) | |
tree | 9ebcbc2030b120df99450a30550bbdacdebabec4 /ext/pcre/pcrelib/pcre_exec.c | |
parent | 38229d13d14bb0bda736d52a9a4f25c121445692 (diff) | |
download | php-git-06fdf359e3217f795fded77e337d5417426b8d64.tar.gz |
typo fixes - https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'ext/pcre/pcrelib/pcre_exec.c')
-rw-r--r-- | ext/pcre/pcrelib/pcre_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/pcrelib/pcre_exec.c b/ext/pcre/pcrelib/pcre_exec.c index ab58735d5c..be0af11633 100644 --- a/ext/pcre/pcrelib/pcre_exec.c +++ b/ext/pcre/pcrelib/pcre_exec.c @@ -1038,7 +1038,7 @@ for (;;) the result of a recursive call to match() whatever happened so it was possible to reduce stack usage by turning this into a tail recursion, except in the case of a possibly empty group. However, now that there is - the possiblity of (*THEN) occurring in the final alternative, this + the possibility of (*THEN) occurring in the final alternative, this optimization is no longer always possible. We can optimize if we know there are no (*THEN)s in the pattern; at present |