Skip to content

Commit 5c6c15b

Browse files
committed
More spelling/typo fixes
1 parent cf259b4 commit 5c6c15b

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

doc/user/command-line.xml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ foo.in
353353
<varname>NUM_CPU</varname> environment variable.
354354
(This is one of the exception cases
355355
where the string is spelled differently from
356-
the from command-line option.
356+
the command-line option.
357357
The string for fetching or setting the <option>--jobs</option>
358358
value is <parameter>num_jobs</parameter>
359359
for historical reasons.)
@@ -387,9 +387,9 @@ foo.in
387387
But any explicit
388388
<option>-j</option> or <option>--jobs</option>
389389
value you specify on the command line is used first,
390-
regardless of whether or not
390+
whether
391391
the <envar>NUM_CPU</envar> environment
392-
variable is set:
392+
variable is set or not:
393393

394394
</para>
395395

@@ -753,7 +753,7 @@ foo.in
753753
(see the immediately following sections for details).
754754
Thus, they must be collected before &SConscript; processing
755755
takes place. &AddOption; calls do provide the
756-
the necessary instructions to resolve the ambiguity,
756+
necessary instructions to resolve the ambiguity,
757757
but as they appear in &SConscript; files,
758758
&SCons; does not have the information early enough,
759759
and unexpected things may happen,
@@ -916,7 +916,7 @@ prog.c
916916

917917
<para>
918918

919-
To accomodate these requirements,
919+
To accommodate these requirements,
920920
&SCons; also provides an &ARGLIST; variable
921921
that gives you direct access to build variable
922922
settings from the command line,
@@ -1000,7 +1000,7 @@ prog.c
10001000
and apply the values to a &consvar;.
10011001
To help with this,
10021002
&SCons; provides a &Variables; container class to
1003-
hold defintions of such build variables,
1003+
hold definitions of such build variables,
10041004
and a mechanism to apply the
10051005
build variables to a &consenv;.
10061006
This allows you to control how the build variables affect
@@ -1101,7 +1101,7 @@ bar.c
11011101

11021102
</section>
11031103

1104-
<section id="secr-variables-help">
1104+
<section id="sec-variables-help">
11051105
<title>Providing Help for Command-Line Build Variables</title>
11061106

11071107
<para>
@@ -1161,7 +1161,7 @@ Help(vars.GenerateHelpText(env))
11611161

11621162
<para>
11631163

1164-
Being able to to specify the
1164+
Being able to specify the
11651165
value of a build variable on the command line
11661166
is useful,
11671167
but can still become tedious
@@ -1271,7 +1271,7 @@ vars = Variables('custom.py', ARGUMENTS)
12711271

12721272
</para>
12731273

1274-
<!-- TODO: maybe show a variable used to select between vairable scripts? -->
1274+
<!-- TODO: maybe show a variable used to select between variable scripts? -->
12751275

12761276
</section>
12771277

@@ -1298,11 +1298,11 @@ vars = Variables('custom.py', ARGUMENTS)
12981298
It is often handy to be able to specify a
12991299
variable that controls a simple Boolean variable
13001300
with a &true; or &false; value.
1301-
It would be even more handy to accomodate
1301+
It would be even more handy to accommodate
13021302
different preferences for how to represent
13031303
&true; or &false; values.
13041304
The &BoolVariable; function
1305-
makes it easy to accomodate these
1305+
makes it easy to accommodate these
13061306
common representations of
13071307
&true; or &false;.
13081308

@@ -2005,7 +2005,7 @@ vars = Variables()
20052005
vars.AddVariables(
20062006
('RELEASE', 'Set to 1 to build for release', 0),
20072007
('CONFIG', 'Configuration file', '/etc/my_config'),
2008-
BoolVariable('warnings', help='compilation with -Wall and similiar', default=True),
2008+
BoolVariable('warnings', help='compilation with -Wall and similar', default=True),
20092009
EnumVariable(
20102010
'debug',
20112011
help='debug output and symbols',
@@ -2173,7 +2173,7 @@ foo.c
21732173

21742174
Now, running &SCons; with the default target
21752175
works as usual,
2176-
but explicity specifying the &bar; target
2176+
but explicitly specifying the &bar; target
21772177
on the command line generates the warning message:
21782178

21792179
</para>
@@ -2430,7 +2430,7 @@ prog1.c
24302430

24312431
<para>
24322432

2433-
(Keep in mind that all of the manipulation of the
2433+
(Keep in mind that the manipulation of the
24342434
&DEFAULT_TARGETS; list takes place during the
24352435
first phase when &SCons; is reading up the &SConscript; files,
24362436
which is obvious if

0 commit comments

Comments
 (0)