summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/scons.mod4
-rw-r--r--doc/user/add-method.xml8
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/scons.mod b/doc/scons.mod
index ea1deccb6..ebe0e6f48 100644
--- a/doc/scons.mod
+++ b/doc/scons.mod
@@ -100,7 +100,7 @@
<!ENTITY CommandAction "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>CommandAction</classname>">
<!ENTITY FunctionAction "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>FunctionAction</classname>">
<!ENTITY ListAction "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>ListAction</classname>">
-<!ENTITY Builder "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Builder</classname>">
+<!ENTITY Builder "<glossterm xmlns='http://www.scons.org/dbxsd/v1.0'>Builder</glossterm>">
<!ENTITY BuilderBase "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>BuilderBase</classname>">
<!ENTITY CompositeBuilder "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>CompositeBuilder</classname>">
<!ENTITY MultiStepBuilder "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>MultiStepBuilder</classname>">
@@ -110,7 +110,7 @@
<!ENTITY Parallel "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Parallel</classname>">
<!ENTITY Node "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Node</classname>">
<!ENTITY Node_FS "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Node.FS</classname>">
-<!ENTITY Scanner "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Scanner</classname>">
+<!ENTITY Scanner "<glossterm xmlns='http://www.scons.org/dbxsd/v1.0'>Scanner</glossterm>">
<!ENTITY Sig "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Sig</classname>">
<!ENTITY Signature "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Signature</classname>">
<!ENTITY Taskmaster "<classname xmlns='http://www.scons.org/dbxsd/v1.0'>Taskmaster</classname>">
diff --git a/doc/user/add-method.xml b/doc/user/add-method.xml
index 86297de7a..d25ba9a23 100644
--- a/doc/user/add-method.xml
+++ b/doc/user/add-method.xml
@@ -31,10 +31,10 @@ Copyright The SCons Foundation
The &f-link-AddMethod; function is used to add a method
to an environment. It is typically used to add a "pseudo-builder,"
- a function that looks like a Builder but
- wraps up calls to multiple other Builder's
+ a function that looks like a &Builder; but
+ wraps up calls to multiple other &Builder;'s
or otherwise processes its arguments
- before calling one or more Builders.
+ before calling one or more &Builder;s.
In the following example,
we want to install the program into the standard
<filename>/usr/bin</filename> directory hierarchy,
@@ -71,7 +71,7 @@ int main() { printf("Hello, world!\n"); }
<para>
A pseudo-builder is useful because it provides more flexibility
- in parsing arguments than you can get with a standard Builder method.
+ in parsing arguments than you can get with a standard &Builder;.
The next example shows a pseudo-builder with a
named argument that modifies the filename, and a separate argument
for the resource file (rather than having the builder figure it out