diff --git a/v2/doc/src/reference.xml b/v2/doc/src/reference.xml
index e2217f937..abf979a92 100644
--- a/v2/doc/src/reference.xml
+++ b/v2/doc/src/reference.xml
@@ -1792,28 +1792,28 @@ using fop : fop-command :
-
+
binding
- rule binding ( module )
+ rule binding ( module-name )
Returns the binding of the given module.
poke
- rule poke ( module-name ? : variables + : value * )
+ rule poke ( module-name ? : variables + : value * )
Sets the module-local value of a variable.
peek
- rule peek ( module-name ? : variables + )
+ rule peek ( module-name ? : variables + )
Returns the module-local value of a variable.
call-in
- rule call-in ( module-name ? : rule-name args * : * )
+ rule call-in ( module-name ? : rule-name args * : * )
Call the given rule locally in the given module. Use
this for rules accepting rule names as arguments, so that
the passed rule may be invoked in the context of the rule's
@@ -1825,7 +1825,7 @@ using fop : fop-command :
call-locally
- rule call-locally ( qualified-rule-name args * : * )
+ rule call-locally ( qualified-rule-name args * : * )
Given a possibly qualified rule name and arguments, remove
any initial module qualification from the rule and invoke it in
that module. If there is no module qualification, the rule is
@@ -1836,7 +1836,7 @@ using fop : fop-command :
load
- rule load ( module-name : filename ? : search * )
+ rule load ( module-name : filename ? : search * )
Load the indicated module if it is not already loaded.
@@ -1861,7 +1861,7 @@ using fop : fop-command :
import
- rule import ( module-names + : rules-opt * : rename-opt * )
+ rule import ( module-names + : rules-opt * : rename-opt * )
Load the indicated module and import rule names into the
current module. Any members of rules-opt will be
available without qualification in the caller's module. Any
@@ -1877,7 +1877,7 @@ using fop : fop-command :
clone-rules
- rule clone-rules ( source-module target-module )
+ rule clone-rules ( source-module target-module )
Define exported copies in $(target-module)
of all rules exported from $(source-module). Also
make them available in the global module with qualification,