diff options
author | Steven Knight <knight@baldmt.com> | 2003-12-08 12:23:44 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-12-08 12:23:44 (GMT) |
commit | 5d901003397326b8735482823a1221af8fe1acb4 (patch) | |
tree | c8cc2c97c5c9e073c047b38aed865afb73401650 /doc | |
parent | 69fad99f14c6ae0ba16db7ffda4d892fb2381f53 (diff) | |
download | SCons-5d901003397326b8735482823a1221af8fe1acb4.zip SCons-5d901003397326b8735482823a1221af8fe1acb4.tar.gz SCons-5d901003397326b8735482823a1221af8fe1acb4.tar.bz2 |
Fix spelling errors in error messages, man page typos.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 034c920..a657565 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -1199,7 +1199,7 @@ env.DVI(target = 'ccc.dvi', source = 'ccc.latex') .IP env.Jar() Builds a Java archive (.jar) file from a source tree of .class files. -If the $JAVACHDIR value is set, the +If the $JARCHDIR value is set, the .B jar command will change to the specified directory using the .B \-C @@ -6484,7 +6484,7 @@ class foo: def __init__(self, arg): self.arg = arg - def __call__(self, target, source, env): + def __call__(self, target, source, env, for_signature): return arg + " bar" # Will expand $BAR to "my argument bar baz" |