diff options
author | Alex Thiessen <alex.thiessen.de+github@gmail.com> | 2024-11-15 13:17:02 (GMT) |
---|---|---|
committer | Alex Thiessen <alex.thiessen.de+github@gmail.com> | 2024-11-15 15:07:52 (GMT) |
commit | 73f1cd097a3e87c1aff5fdf30d744efdc7d54db2 (patch) | |
tree | 4c30c83cf66f0fd397dd02ea8719d3f2297a51c4 /SCons | |
parent | 2cba4ceb8948f32f20de5b6ccf76cca63d280aa4 (diff) | |
download | SCons-73f1cd097a3e87c1aff5fdf30d744efdc7d54db2.zip SCons-73f1cd097a3e87c1aff5fdf30d744efdc7d54db2.tar.gz SCons-73f1cd097a3e87c1aff5fdf30d744efdc7d54db2.tar.bz2 |
*.xml: Add miscellaneous language improvements
Diffstat (limited to 'SCons')
-rw-r--r-- | SCons/Environment.xml | 4 | ||||
-rw-r--r-- | SCons/Script/Main.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/gs.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/install.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/javac.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/ninja/ninja.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/packaging/packaging.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/qt3.xml | 2 | ||||
-rw-r--r-- | SCons/Tool/tlib.xml | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/SCons/Environment.xml b/SCons/Environment.xml index 9248721..dafc649 100644 --- a/SCons/Environment.xml +++ b/SCons/Environment.xml @@ -1033,7 +1033,7 @@ either as separate arguments to the &f-Clean; method, or as a list. &f-Clean; -will also accept the return value of any of the &consenv; +will also accept the return value of the &consenv; Builder methods. Examples: </para> @@ -1065,7 +1065,7 @@ Clean(['foo', 'bar'], 'something_else_to_clean') In this example, installing the project creates a subdirectory for the documentation. This statement causes the subdirectory to be removed -if the project is deinstalled. +if the project is uninstalled. </para> <example_commands> Clean(docdir, os.path.join(docdir, projectname)) diff --git a/SCons/Script/Main.xml b/SCons/Script/Main.xml index 38d8dad..810e8aa 100644 --- a/SCons/Script/Main.xml +++ b/SCons/Script/Main.xml @@ -201,7 +201,7 @@ Future versions of &SCons; will likely forbid such usage. <summary> <para> Allows setting options for SCons debug options. Currently, the only supported value is - <emphasis>json</emphasis> which sets the path to the json file created when + <emphasis>json</emphasis> which sets the path to the JSON file created when <literal>--debug=json</literal> is set. </para> <example_commands> diff --git a/SCons/Tool/gs.xml b/SCons/Tool/gs.xml index b984fd3..2e0f46e 100644 --- a/SCons/Tool/gs.xml +++ b/SCons/Tool/gs.xml @@ -27,7 +27,7 @@ This file is processed by the bin/SConsDoc.py module. <tool name="gs"> <summary> <para> -This Tool sets the required construction variables for working with +This tool sets the required construction variables for working with the Ghostscript software. It also registers an appropriate Action with the &b-link-PDF; Builder, such that the conversion from PS/EPS to PDF happens automatically for the TeX/LaTeX toolchain. diff --git a/SCons/Tool/install.xml b/SCons/Tool/install.xml index 3069cad..cdb044b 100644 --- a/SCons/Tool/install.xml +++ b/SCons/Tool/install.xml @@ -72,7 +72,7 @@ in this case. If the <option>--install-sandbox</option> command line option is given, the target directory will be prefixed by the directory path specified. -This is useful to test installs without installing to +This is useful to test installation behavior without installing to a "live" location in the system. </para> diff --git a/SCons/Tool/javac.xml b/SCons/Tool/javac.xml index af1fc31..c43470c 100644 --- a/SCons/Tool/javac.xml +++ b/SCons/Tool/javac.xml @@ -110,7 +110,7 @@ env.Java(target='classes', source=['File1.java', 'File2.java']) <literal>LANG</literal> environment variable to tell the compiler what encoding is used. For portability, it's best if the encoding is hard-coded, - so that the compile will work if it is done on a system + so that the compilation works when run on a system with a different encoding. </para> diff --git a/SCons/Tool/ninja/ninja.xml b/SCons/Tool/ninja/ninja.xml index c833d44..4510f71 100644 --- a/SCons/Tool/ninja/ninja.xml +++ b/SCons/Tool/ninja/ninja.xml @@ -350,7 +350,7 @@ python -m pip install ninja <summary> <para> Internal value used to specify the function to call with argument env to generate the list of files - which if changed would require the &ninja; build file to be regenerated. + which -- if changed -- would require the &ninja; build file to be regenerated. </para> </summary> </cvar> diff --git a/SCons/Tool/packaging/packaging.xml b/SCons/Tool/packaging/packaging.xml index 0c42462..6f1a8d8 100644 --- a/SCons/Tool/packaging/packaging.xml +++ b/SCons/Tool/packaging/packaging.xml @@ -262,7 +262,7 @@ placed if applicable. The default value is <quote>&cv-NAME;-&cv-VERSION;</quote <summary> <para> Selects the package type to build when using the &b-link-Package; -builder. May be a string or list of strings. See the docuentation +builder. It may be a string or list of strings. See the documentation for the builder for the currently supported types. </para> diff --git a/SCons/Tool/qt3.xml b/SCons/Tool/qt3.xml index a2762f7..4c75a88 100644 --- a/SCons/Tool/qt3.xml +++ b/SCons/Tool/qt3.xml @@ -74,7 +74,7 @@ The &t-qt3; tool supports the following operations: <emphasis role="strong">Automatic moc file generation from header files.</emphasis> You do not have to specify moc files explicitly, the tool does it for you. However, there are a few preconditions to do so: Your header file must have -the same filebase as your implementation file and must stay in the same +the same basename as your implementation file and must stay in the same directory. It must have one of the suffixes <filename>.h</filename>, <filename>.hpp</filename>, diff --git a/SCons/Tool/tlib.xml b/SCons/Tool/tlib.xml index f186a17..1fb34ef 100644 --- a/SCons/Tool/tlib.xml +++ b/SCons/Tool/tlib.xml @@ -28,7 +28,7 @@ This file is processed by the bin/SConsDoc.py module. <summary> <para> Sets construction variables for the Borland -<application>tib</application> library archiver. +<application>tlib</application> library archiver. </para> </summary> <sets> |