summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ref/sxml.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/ref/sxml.texi b/doc/ref/sxml.texi
index 7e3ca65e3..003309d54 100644
--- a/doc/ref/sxml.texi
+++ b/doc/ref/sxml.texi
@@ -475,14 +475,14 @@ where
<handler> :: <trigger-symbol> x [<tree>] -> <new-tree>
@end smallexample
-The pre-post-order function visits the nodes and nodelists
-pre-post-order (depth-first). For each @code{<Node>} of the form
-@code{(@var{name} <Node> ...)}, it looks up an association with the
-given @var{name} among its @var{<bindings>}. If failed,
-@code{pre-post-order} tries to locate a @code{*default*} binding. It's
-an error if the latter attempt fails as well. Having found a binding,
-the @code{pre-post-order} function first checks to see if the binding is
-of the form
+The @code{pre-post-order} function, in the @code{(sxml transform)}
+module, visits the nodes and nodelists pre-post-order (depth-first).
+For each @code{<Node>} of the form @code{(@var{name} <Node> ...)}, it
+looks up an association with the given @var{name} among its
+@var{<bindings>}. If failed, @code{pre-post-order} tries to locate a
+@code{*default*} binding. It's an error if the latter attempt fails as
+well. Having found a binding, the @code{pre-post-order} function first
+checks to see if the binding is of the form
@smallexample
(<trigger-symbol> *preorder* . <handler>)