summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBake Timmons <b3timmons@speedymail.org>2012-01-11 09:30:57 -0500
committerAndy Wingo <wingo@pobox.com>2012-02-02 12:04:16 +0100
commit9cbcc73fce39811052519f5f19016b5eb888f151 (patch)
treec8f3c601f04c69742151642522469c767b215b0d
parentbf8d845468fa71debf45e91a4e40f4b219dab4b0 (diff)
downloadguile-9cbcc73fce39811052519f5f19016b5eb888f151.tar.gz
Fix unbalanced parentheses in docs.
* doc/ref/sxml-match.texi (sxml-match-let, sxml-match-let*): Remove extraneous parenthesis at end of Texinfo function definition header.
-rw-r--r--doc/ref/sxml-match.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/sxml-match.texi b/doc/ref/sxml-match.texi
index 7b82e1177..cf5c5d341 100644
--- a/doc/ref/sxml-match.texi
+++ b/doc/ref/sxml-match.texi
@@ -356,8 +356,8 @@ transformation that formats a ``TV Guide'' into HTML.
@unnumberedsubsec @code{sxml-match-let} and @code{sxml-match-let*}
-@deffn {Scheme Syntax} sxml-match-let ((pat expr) ...) expression0 expression ...)
-@deffnx {Scheme Syntax} sxml-match-let* ((pat expr) ...) expression0 expression ...)
+@deffn {Scheme Syntax} sxml-match-let ((pat expr) ...) expression0 expression ...
+@deffnx {Scheme Syntax} sxml-match-let* ((pat expr) ...) expression0 expression ...
These forms generalize the @code{let} and @code{let*} forms of Scheme to allow
an XML pattern in the binding position, rather than a simple variable.
@end deffn