document -q, repl options
[bpt/guile.git] / doc / ref / sxml-match.texi
index 828c838..7b82e11 100644 (file)
@@ -38,8 +38,8 @@ illustration, transforming a music album catalog language into HTML.
 Three macros are provided: @code{sxml-match}, @code{sxml-match-let}, and
 @code{sxml-match-let*}.
 
-Compared to a standard s-expression pattern matcher, @code{sxml-match} provides
-the following benefits:
+Compared to a standard s-expression pattern matcher (@pxref{Pattern
+Matching}), @code{sxml-match} provides the following benefits:
 
 @itemize
 @item
@@ -298,7 +298,7 @@ basic arithmetic operations, which are represented by the XML elements
 @end lisp
 
 Using the catamorphism feature of @code{sxml-match}, a more concise version of
-@code{simple-eval} can be written.  The pattern @code{,[x]} recusively invokes
+@code{simple-eval} can be written.  The pattern @code{,[x]} recursively invokes
 the pattern matcher on the value bound in this position.
 
 @lisp