diff --git a/v2/doc/src/reference.xml b/v2/doc/src/reference.xml
index 859894f43..5ccd6be54 100644
--- a/v2/doc/src/reference.xml
+++ b/v2/doc/src/reference.xml
@@ -1828,8 +1828,8 @@ using fop : fop-command :
-
- binding
+
+ binding
rule binding ( module-name )
Returns the filesystem binding of the given module.
For example, a module can get its own location with:
@@ -1837,8 +1837,8 @@ using fop : fop-command :
-
- poke
+
+ poke
rule poke ( module-name ? : variables + : value * )
Sets the module-local value of a variable.
For example, to set a variable in the global module:
@@ -1846,8 +1846,8 @@ using fop : fop-command :
-
- peek
+
+ peek
rule peek ( module-name ? : variables + )
Returns the module-local value of a variable.
@@ -1856,8 +1856,8 @@ using fop : fop-command :
-
- call-in
+
+ call-in
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
@@ -1883,8 +1883,8 @@ using fop : fop-command :
-
- call-locally
+
+ call-locally
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
@@ -1895,8 +1895,8 @@ using fop : fop-command :
-
- load
+
+ load
rule load ( module-name : filename ? : search * )
Load the indicated module if it is not already loaded.
@@ -1920,8 +1920,8 @@ using fop : fop-command :
-
- import
+
+ import
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
@@ -1942,8 +1942,8 @@ import path : native make : native-path make-path ;
-
- clone-rules
+
+ clone-rules
rule clone-rules ( source-module target-module )
Define exported copies in $(target-module)
of all rules exported from $(source-module). Also