summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-07-27 17:27:45 (GMT)
committerSteven Knight <knight@baldmt.com>2003-07-27 17:27:45 (GMT)
commit784bfda1c79778638356ae85b3ff748c55aed544 (patch)
tree426a767241c944e22302050d4921df6a323a1ab8 /doc
parented8786e2997389da9467e543b0be9173c486f235 (diff)
downloadSCons-784bfda1c79778638356ae85b3ff748c55aed544.zip
SCons-784bfda1c79778638356ae85b3ff748c55aed544.tar.gz
SCons-784bfda1c79778638356ae85b3ff748c55aed544.tar.bz2
Correct the spelling of validator.
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.14
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index 29b2bb2..f8df0bd 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -3819,7 +3819,7 @@ opts = Options(None, {FOO:'expansion', BAR:7})
Options objects have the following methods:
.TP
-.RI Add( key ", [" help ", " default ", " validater ", " converter ])
+.RI Add( key ", [" help ", " default ", " validator ", " converter ])
This adds a customizable construction variable to the Options object.
.I key
is the name of the variable.
@@ -3827,7 +3827,7 @@ is the name of the variable.
is the help text for the variable.
.I default
is the default value of the variable.
-.I validater
+.I validator
is called to validate the value of the variable, and should take three
arguments: key, value, and environment
.I converter