diff --git a/opcodes/dollar.xml b/opcodes/dollar.xml
index 777fc85b76..aabd6b3e6e 100644
--- a/opcodes/dollar.xml
+++ b/opcodes/dollar.xml
@@ -27,7 +27,16 @@
- $NAME -- calls a defined macro. To use a macro, the name is used following a $ character. The name is terminated by the first character which is neither a letter nor a number. If it is necessary for the name not to terminate with a space, a period, which will be ignored, can be used to terminate the name. The string, $NAME., is replaced by the replacement text from the definition. The replacement text can also include macro calls.
+ $NAME
+ $NAME. -- calls a defined macro. To
+ use a macro, the name is used following a $
+ character. The name is terminated by the first character which
+ is neither a letter nor a number. If it is necessary for the
+ name to be followed by a letter or number, a period, which will be
+ ignored, can be used to terminate the name. The string,
+ $NAME., is replaced by the
+ replacement text from the definition. The replacement text can
+ also include macro calls.
@@ -39,7 +48,7 @@
Initialization
- # replacement text # -- The replacement text is any character string (not containing a #) and can extend over mutliple lines. The replacement text is enclosed within the # characters, which ensure that additional characters are not inadvertently captured.
+ # replacement text # -- The replacement text is any character string (not containing a #) and can extend over multiple lines. The replacement text is enclosed within the # characters, which ensure that additional characters are not inadvertently captured.
diff --git a/score/macros.xml b/score/macros.xml
index 0a1d4e22e4..60255d2c05 100644
--- a/score/macros.xml
+++ b/score/macros.xml
@@ -24,15 +24,15 @@
- $NAME. -- calls a defined macro.
- To use a macro, the name is used following a $ character.
+ $NAME. -- calls a defined macro. To
+ use a macro, the name is used following a $ character.
The name is terminated by the first character which is neither a
- letter nor a number. If it is necessary for the name not to
- terminate with a space, a period, which will be ignored, can be
- used to terminate the name. The string,
+ letter nor a number. If it is necessary for the name to be
+ immediately followed by a leter or digit, a period, which will
+ be ignored, can be used to terminate the name. The string,
$NAME., is replaced by the
replacement text from the definition. The replacement text can
- also include macro calls.
+ also include macro calls.