diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-10-18 09:45:23 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-10-18 09:45:23 -0400 |
commit | fa6f3ffee42be46a8e1e14762a73fe44504a9796 (patch) | |
tree | 882e70e2c8cfb0d97db4e0669ab11683da6a8098 /syntax-highlight | |
parent | b4023829411b3e3c91d6a2ab47d2cab999499107 (diff) |
parsers: Fix typo in docstring.
* syntax-highlight/parsers.scm (tagged-parser): Fix typo in docstring.
Diffstat (limited to 'syntax-highlight')
-rw-r--r-- | syntax-highlight/parsers.scm | 2 |
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)) |