diff options
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/manual.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 2feb60ac0..d8d53085c 100755 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -4005,7 +4005,7 @@ The following example how some form of hoisting can be implemented: The ``optPeg`` template optimizes the case of a peg constructor with a string literal, so that the pattern will only be parsed once at program startup and -stored in global ``gl`` which is then re-used. This optimization is called +stored in a global ``gl`` which is then re-used. This optimization is called hoisting because it is comparable to classical loop hoisting. |