summaryrefslogtreecommitdiffstats
path: root/SCons
diff options
context:
space:
mode:
authorAlex Thiessen <alex.thiessen.de+github@gmail.com>2024-11-15 12:39:26 (GMT)
committerAlex Thiessen <alex.thiessen.de+github@gmail.com>2024-11-15 15:07:51 (GMT)
commitb4ab76fb8f37bb0d9c76c10c91c9365af0861f5d (patch)
tree5d99eba14509bcb9593fc62ffa7a24e1d3501671 /SCons
parent8aa16624a5dd789043fe0e1e99825d6711ad52b9 (diff)
downloadSCons-b4ab76fb8f37bb0d9c76c10c91c9365af0861f5d.zip
SCons-b4ab76fb8f37bb0d9c76c10c91c9365af0861f5d.tar.gz
SCons-b4ab76fb8f37bb0d9c76c10c91c9365af0861f5d.tar.bz2
*.xml: Add missing commas
Diffstat (limited to 'SCons')
-rw-r--r--SCons/Action.xml2
-rw-r--r--SCons/Defaults.xml6
-rw-r--r--SCons/Environment.xml2
-rw-r--r--SCons/Script/Main.xml2
-rw-r--r--SCons/Tool/f03.xml2
-rw-r--r--SCons/Tool/f08.xml2
-rw-r--r--SCons/Tool/f77.xml2
-rw-r--r--SCons/Tool/f90.xml2
-rw-r--r--SCons/Tool/f95.xml2
-rw-r--r--SCons/Tool/fortran.xml2
-rw-r--r--SCons/Tool/jar.xml2
-rw-r--r--SCons/Tool/javac.xml2
-rw-r--r--SCons/Tool/link.xml4
-rw-r--r--SCons/Tool/msvc.xml2
-rw-r--r--SCons/Tool/msvs.xml4
-rw-r--r--SCons/Tool/textfile.xml4
-rw-r--r--SCons/Tool/zip.xml2
17 files changed, 22 insertions, 22 deletions
diff --git a/SCons/Action.xml b/SCons/Action.xml
index 738df78..906324c 100644
--- a/SCons/Action.xml
+++ b/SCons/Action.xml
@@ -61,7 +61,7 @@ Action strings can be segmented by the
use of an AND operator, <literal>&amp;&amp;</literal>.
In a segmented string, each segment is a separate
<quote>command line</quote>, these are run
-sequentially until one fails or the entire
+sequentially until one fails, or the entire
sequence has been executed. If an
action string is segmented, then the selected
behavior of &cv-IMPLICIT_COMMAND_DEPENDENCIES;
diff --git a/SCons/Defaults.xml b/SCons/Defaults.xml
index 80ec4cd..f621528 100644
--- a/SCons/Defaults.xml
+++ b/SCons/Defaults.xml
@@ -261,7 +261,7 @@ to each directory in &cv-link-CPPPATH;.
The list of directories that the C preprocessor will search for include
directories. The C/C++ implicit dependency scanner will search these
directories for include files.
-In general it's not advised to put include directory directives
+In general, it's not advised to put include directory directives
directly into &cv-link-CCFLAGS; or &cv-link-CXXFLAGS;
as the result will be non-portable
and the directories will not be searched by the dependency scanner.
@@ -276,7 +276,7 @@ directory names in &cv-CPPPATH;
will be looked-up relative to the directory of the SConscript file
when they are used in a command.
To force &scons;
-to look-up a directory relative to the root of the source tree use
+to look-up a directory relative to the root of the source tree, use
the <literal>#</literal> prefix:
</para>
@@ -548,7 +548,7 @@ directory names in &cv-LIBPATH; will be looked-up relative to the
directory of the SConscript file
when they are used in a command.
To force &scons;
-to look-up a directory relative to the root of the source tree use
+to look-up a directory relative to the root of the source tree, use
the <literal>#</literal> prefix:
</para>
diff --git a/SCons/Environment.xml b/SCons/Environment.xml
index 87d1e7c..be32fa5 100644
--- a/SCons/Environment.xml
+++ b/SCons/Environment.xml
@@ -2033,7 +2033,7 @@ FindSourceFiles('src')
</example_commands>
<para>
-As you can see build support files (&SConstruct; in the above example)
+As you can see, build support files (&SConstruct; in the above example)
will also be returned by this function.
</para>
</summary>
diff --git a/SCons/Script/Main.xml b/SCons/Script/Main.xml
index 01a3b90..38d8dad 100644
--- a/SCons/Script/Main.xml
+++ b/SCons/Script/Main.xml
@@ -200,7 +200,7 @@ Future versions of &SCons; will likely forbid such usage.
</arguments>
<summary>
<para>
-Allows setting options for SCons debug options. Currently the only supported value is
+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
<literal>--debug=json</literal> is set.
</para>
diff --git a/SCons/Tool/f03.xml b/SCons/Tool/f03.xml
index e5df9eb..e18439c 100644
--- a/SCons/Tool/f03.xml
+++ b/SCons/Tool/f03.xml
@@ -154,7 +154,7 @@ and the directories will not be searched by the dependency scanner. Note:
directory names in &cv-link-F03PATH; will be looked-up relative to the SConscript
directory when they are used in a command. To force
&scons;
-to look-up a directory relative to the root of the source tree use #:
+to look-up a directory relative to the root of the source tree, use #:
You only need to set &cv-link-F03PATH; if you need to define a specific
include path for Fortran 03 files.
You should normally set the &cv-link-FORTRANPATH; variable,
diff --git a/SCons/Tool/f08.xml b/SCons/Tool/f08.xml
index e50f857..dcf1b49 100644
--- a/SCons/Tool/f08.xml
+++ b/SCons/Tool/f08.xml
@@ -154,7 +154,7 @@ and the directories will not be searched by the dependency scanner. Note:
directory names in &cv-link-F08PATH; will be looked-up relative to the SConscript
directory when they are used in a command. To force
&scons;
-to look-up a directory relative to the root of the source tree use #:
+to look-up a directory relative to the root of the source tree, use #:
You only need to set &cv-link-F08PATH; if you need to define a specific
include path for Fortran 08 files.
You should normally set the &cv-link-FORTRANPATH; variable,
diff --git a/SCons/Tool/f77.xml b/SCons/Tool/f77.xml
index a98c110..5420c62 100644
--- a/SCons/Tool/f77.xml
+++ b/SCons/Tool/f77.xml
@@ -169,7 +169,7 @@ and the directories will not be searched by the dependency scanner. Note:
directory names in &cv-link-F77PATH; will be looked-up relative to the SConscript
directory when they are used in a command. To force
&scons;
-to look-up a directory relative to the root of the source tree use #:
+to look-up a directory relative to the root of the source tree, use #:
You only need to set &cv-link-F77PATH; if you need to define a specific
include path for Fortran 77 files.
You should normally set the &cv-link-FORTRANPATH; variable,
diff --git a/SCons/Tool/f90.xml b/SCons/Tool/f90.xml
index 0a2f6a0..4310ed8 100644
--- a/SCons/Tool/f90.xml
+++ b/SCons/Tool/f90.xml
@@ -154,7 +154,7 @@ and the directories will not be searched by the dependency scanner. Note:
directory names in &cv-link-F90PATH; will be looked-up relative to the SConscript
directory when they are used in a command. To force
&scons;
-to look-up a directory relative to the root of the source tree use #:
+to look-up a directory relative to the root of the source tree, use #:
You only need to set &cv-link-F90PATH; if you need to define a specific
include path for Fortran 90 files.
You should normally set the &cv-link-FORTRANPATH; variable,
diff --git a/SCons/Tool/f95.xml b/SCons/Tool/f95.xml
index 3e96484..91e5a48 100644
--- a/SCons/Tool/f95.xml
+++ b/SCons/Tool/f95.xml
@@ -154,7 +154,7 @@ and the directories will not be searched by the dependency scanner. Note:
directory names in &cv-link-F95PATH; will be looked-up relative to the SConscript
directory when they are used in a command. To force
&scons;
-to look-up a directory relative to the root of the source tree use #:
+to look-up a directory relative to the root of the source tree, use #:
You only need to set &cv-link-F95PATH; if you need to define a specific
include path for Fortran 95 files.
You should normally set the &cv-link-FORTRANPATH; variable,
diff --git a/SCons/Tool/fortran.xml b/SCons/Tool/fortran.xml
index 944eb3e..799e1d6 100644
--- a/SCons/Tool/fortran.xml
+++ b/SCons/Tool/fortran.xml
@@ -239,7 +239,7 @@ non-portable and the directories will not be searched by the dependency
scanner. Note: directory names in FORTRANPATH will be looked-up relative
to the SConscript directory when they are used in a command. To force
&scons;
-to look-up a directory relative to the root of the source tree use #:
+to look-up a directory relative to the root of the source tree, use #:
</para>
<example_commands>
diff --git a/SCons/Tool/jar.xml b/SCons/Tool/jar.xml
index 011ce4e..ba8b2df 100644
--- a/SCons/Tool/jar.xml
+++ b/SCons/Tool/jar.xml
@@ -130,7 +130,7 @@ env = Environment(JARCOMSTR="JARchiving $SOURCES into $TARGET")
<summary>
<para>
General options passed to the Java archive tool.
-By default this is set to
+By default, this is set to
<option>cf</option>
to create the necessary
<command>jar</command>
diff --git a/SCons/Tool/javac.xml b/SCons/Tool/javac.xml
index ccda885..b6b3f6e 100644
--- a/SCons/Tool/javac.xml
+++ b/SCons/Tool/javac.xml
@@ -109,7 +109,7 @@ env.Java(target='classes', source=['File1.java', 'File2.java'])
In this case, the user must specify the
<literal>LANG</literal>
environment variable to tell the compiler what encoding is used.
- For portability, it's best if the encoding is hard-coded
+ For portability, it's best if the encoding is hard-coded,
so that the compile will work if it is done on a system
with a different encoding.
</para>
diff --git a/SCons/Tool/link.xml b/SCons/Tool/link.xml
index 0b10768..63d499c 100644
--- a/SCons/Tool/link.xml
+++ b/SCons/Tool/link.xml
@@ -66,7 +66,7 @@ based on the types of source files.
<summary>
<para>
This construction variable automatically introduces &cv-link-_LDMODULEVERSIONFLAGS;
-if &cv-link-LDMODULEVERSION; is set. Otherwise it evaluates to an empty string.
+if &cv-link-LDMODULEVERSION; is set. Otherwise, it evaluates to an empty string.
</para>
</summary>
</cvar>
@@ -75,7 +75,7 @@ if &cv-link-LDMODULEVERSION; is set. Otherwise it evaluates to an empty string.
<summary>
<para>
This construction variable automatically introduces &cv-link-_SHLIBVERSIONFLAGS;
-if &cv-link-SHLIBVERSION; is set. Otherwise it evaluates to an empty string.
+if &cv-link-SHLIBVERSION; is set. Otherwise, it evaluates to an empty string.
</para>
</summary>
</cvar>
diff --git a/SCons/Tool/msvc.xml b/SCons/Tool/msvc.xml
index acf9c5b..c6fa977 100644
--- a/SCons/Tool/msvc.xml
+++ b/SCons/Tool/msvc.xml
@@ -298,7 +298,7 @@ only if the &cv-link-PDB; &consvar; is set.
<para>
This variable specifies how much of a source file is precompiled. This
variable is ignored by tools other than &MSVC;, or when
-the PCH variable is not being used. When this variable is defined it
+the PCH variable is not being used. When this variable is defined, it
must be a string that is the name of the header that
is included at the end of the precompiled portion of the source files, or
the empty string if the "#pragma hrdstop" construct is being used:
diff --git a/SCons/Tool/msvs.xml b/SCons/Tool/msvs.xml
index dba3257..bf9cd52 100644
--- a/SCons/Tool/msvs.xml
+++ b/SCons/Tool/msvs.xml
@@ -292,7 +292,7 @@ This file is processed by the bin/SConsDoc.py module.
it is important not to set Visual Studio to do parallel builds,
as it will then launch the separate project builds in parallel,
and &SCons; does not work well if called that way.
- Instead you can set up the &SCons; build for parallel building -
+ Instead, you can set up the &SCons; build for parallel building -
see the &f-link-SetOption; function for how to do this with
<parameter>num_jobs</parameter>.
</para>
@@ -747,7 +747,7 @@ env.MSVSSolution(
<literal>SccProjectFilePathRelativizedFromConnection[i]</literal>
(where [i] ranges from 0 to the number of projects in the solution)
attributes of the <literal>GlobalSection(SourceCodeControl)</literal>
- section of the Microsoft Visual Studio solution file. Similarly
+ section of the Microsoft Visual Studio solution file. Similarly,
the relative solution file path is placed as the values of the
<literal>SccLocalPath[i]</literal> (where [i] ranges from 0
to the number of projects in the solution) attributes of the
diff --git a/SCons/Tool/textfile.xml b/SCons/Tool/textfile.xml
index 2539f5a..c16b3d0 100644
--- a/SCons/Tool/textfile.xml
+++ b/SCons/Tool/textfile.xml
@@ -68,7 +68,7 @@ and &cv-link-TEXTFILESUFFIX; &consvars;
are automatically added to the target if they are not already present.
</para>
<para>
-By default the target file encoding is "utf-8" and can be changed by &cv-link-FILE_ENCODING;
+By default, the target file encoding is "utf-8" and can be changed by &cv-link-FILE_ENCODING;
Examples:
</para>
@@ -131,7 +131,7 @@ are flattened. See also &b-link-Textfile;.
</para>
<para>
-By default the target file encoding is "utf-8" and can be changed by &cv-link-FILE_ENCODING;
+By default, the target file encoding is "utf-8" and can be changed by &cv-link-FILE_ENCODING;
Examples:
</para>
diff --git a/SCons/Tool/zip.xml b/SCons/Tool/zip.xml
index 85fe19b..9458a12 100644
--- a/SCons/Tool/zip.xml
+++ b/SCons/Tool/zip.xml
@@ -149,7 +149,7 @@ The suffix used for zip file names.
<para>
An optional zip root directory (default empty). The filenames stored
in the zip file will be relative to this directory, if given.
-Otherwise the filenames are relative to the current directory of the
+Otherwise, the filenames are relative to the current directory of the
command.
For instance:
</para>