summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2018-03-05 02:32:30 +0530
committerMark H Weaver <mhw@netris.org>2018-03-16 00:15:12 -0400
commit01f97cfc0a2621f664202e6b19f79cf138869a3d (patch)
treec042adb8be692f73ee3142509b45cf5da90e0dc6 /doc
parent6d9c6833e78e560420a7805bf73a9dfbaa4b0cbb (diff)
Fix minor typo in the PEG documentation.
* doc/ref/api-peg.texi (PEG Internals): Fix minor typo. Signed-off-by: Mark H Weaver <mhw@netris.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/ref/api-peg.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-peg.texi b/doc/ref/api-peg.texi
index cbe3edd34..82e2758b4 100644
--- a/doc/ref/api-peg.texi
+++ b/doc/ref/api-peg.texi
@@ -1012,7 +1012,7 @@ interpreted internally in two steps.
First, any string PEG is expanded into an s-expression PEG by the code
in the @code{(ice-9 peg string-peg)} module.
-Then, then s-expression PEG that results is compiled into a parsing
+Then, the s-expression PEG that results is compiled into a parsing
function by the @code{(ice-9 peg codegen)} module. In particular, the
function @code{compile-peg-pattern} is called on the s-expression. It then
decides what to do based on the form it is passed.