summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-10-18 09:45:23 -0400
committerDavid Thompson <dthompson2@worcester.edu>2015-10-18 09:45:23 -0400
commitfa6f3ffee42be46a8e1e14762a73fe44504a9796 (patch)
tree882e70e2c8cfb0d97db4e0669ab11683da6a8098
parentb4023829411b3e3c91d6a2ab47d2cab999499107 (diff)
parsers: Fix typo in docstring.
* syntax-highlight/parsers.scm (tagged-parser): Fix typo in docstring.
-rw-r--r--syntax-highlight/parsers.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax-highlight/parsers.scm b/syntax-highlight/parsers.scm
index a1c3a37..5349296 100644
--- a/syntax-highlight/parsers.scm
+++ b/syntax-highlight/parsers.scm
@@ -195,5 +195,5 @@ Within the sequence, ESCAPE is recognized as the escape character."
(define (tagged-parser tag parser)
"Create a parser that wraps the result of PARSER in a two element
-list whose first element is TAG.."
+list whose first element is TAG."
(parse-map (cut list tag <>) parser))