summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-12-11 20:06:15 +0100
committerAraq <rumpf_a@web.de>2012-12-11 20:06:15 +0100
commitc98696d7428346b53c8998bf8fab77fe08830e2e (patch)
treef28cfd250d0b64fe5c5259908df52fdf5d9c8366 /doc
parenta840a4ce53c2344f77c6e07b4f8cbed0af2820dd (diff)
downloadNim-c98696d7428346b53c8998bf8fab77fe08830e2e.tar.gz
lazy paths for Babel support
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/manual.txt2
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.