Skip to content

Commit bb56544

Browse files
committed
1 parent 0a914b5 commit bb56544

12 files changed

+22
-17
lines changed

ChangeLog

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Mon Jan 6 06:21:29 UTC 2020 Chad Elliott <[email protected]>
1111
* modules/ProjectCreator.pm:
1212

1313
Make a copy of the flag override hash when connecting it to a
14-
file so that we do not inadvertantly modify multiple flag overrides
14+
file so that we do not inadvertently modify multiple flag overrides
1515
when modifying flag overrides for a single file.
1616

1717
Mon Jul 1 18:35:43 UTC 2019 Chad Elliott <[email protected]>
@@ -155,7 +155,7 @@ Thu Apr 18 22:18:20 UTC 2019 Chad Elliott <[email protected]>
155155
* templates/iar.mpt:
156156

157157
Added an initial, simplistic IAR workspace/project generator.
158-
There will be more changes to fully suport this IDE.
158+
There will be more changes to fully support this IDE.
159159

160160
Mon May 21 14:33:24 UTC 2018 Adam Mitz <[email protected]>
161161

_typos.toml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[default.extend-words]
2+
mosquitto = "mosquitto"
3+
4+
[files]
5+
extend-exclude = ["templates/*.*", "history/*"]

clone_build_tree.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ sub symlinkFiles {
269269
}
270270
}
271271

272-
## Remove links that point to non-existant files. The subroutine is
272+
## Remove links that point to non-existent files. The subroutine is
273273
## now anonymous to avoid the "will not stay shared" warning for %dirs.
274274
my %dirs;
275275
File::Find::find({wanted => sub {
@@ -334,7 +334,7 @@ sub hardlinkFiles {
334334
}
335335
}
336336

337-
## Remove links that point to non-existant files
337+
## Remove links that point to non-existent files
338338
my $lfh = new FileHandle();
339339
my $txt = "$fullbuild/clone_build_tree.links";
340340
if (open($lfh, $txt)) {

create_base.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ sub usageAndExit {
150150
"directory>\n\nThis script will create a base project ",
151151
"based on the contents of the\nsupplied MPC file. ",
152152
"This is only useful if the project ",
153-
"explictly sets\nsharedname or staticname.\n";
153+
"explicitly sets\nsharedname or staticname.\n";
154154
exit(0);
155155
}
156156

docs/html/MakeProjectCreator.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ P.PublisherBook {
996996
text-transform: none;
997997
font-family: "Times New Roman";
998998
}
999-
P.RuningH-F {
999+
P.RunningH-F {
10001000
display: block;
10011001
text-align: left;
10021002
text-indent: 0.000000pt;

docs/html/MakeProjectCreator.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -5815,7 +5815,7 @@ <h6 class="NumberedTableTitle">
58155815
A project and platform
58165816
non-specific command separator which always runs
58175817
right-hand side of the command. For example, in the
5818-
following psuedo command string, both the <em class=
5818+
following pseudo command string, both the <em class=
58195819
"Code">&lt;%cat%&gt;</em> and <em class=
58205820
"Code">&lt;%mv%&gt;</em> commands would be run.
58215821
<em class="Code">
@@ -8439,7 +8439,7 @@ <h6 class="NumberedTableTitle">Custom Type Fields</h6>
84398439
non-empty. If it isn't empty, the values in it can be iterated
84408440
over with a <em class="Code">&lt;%foreach%&gt;</em>. During that
84418441
iteration, the following values can be obtained by the template.
8442-
Each one would appear in the template preceeded by
8442+
Each one would appear in the template preceded by
84438443
<em class="Code">custom_type-&gt;input_file-&gt;</em>
84448444
</p>
84458445

modules/Depgen/Preprocessor.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ sub process {
123123
}
124124

125125
## This has to be outside the if (open(...
126-
## If the last file to be processed isn't accessable then
126+
## If the last file to be processed isn't accessible then
127127
## we still need to return the array reference of includes.
128128
if (!$noincs) {
129129
my @files = ($file);

modules/OutputMessage.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ sub set_levels {
4949
}
5050
}
5151

52-
## Accessor for the debug setting. No parameters are necesary.
52+
## Accessor for the debug setting. No parameters are necessary.
5353
sub get_debug_level {
5454
return $debug;
5555
}

modules/ProjectCreator.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4306,7 +4306,7 @@ sub convert_command_parameters {
43064306
}
43074307

43084308
## Check for the gendir setting associated with this input file. We
4309-
## have to check at so many levels so we don't inadvertantly create
4309+
## have to check at so many levels so we don't inadvertently create
43104310
## intermediate hash tables.
43114311
if (defined $self->{'flag_overrides'}->{$ktype} &&
43124312
defined $self->{'flag_overrides'}->{$ktype}->{$input} &&

modules/StringProcessor.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ sub crlf {
117117
sub windows_crlf {
118118
## Windows and cygwin require a carriage return and line feed.
119119
## However, at some point cygwin changed the way it does output and can
120-
## be controled through an environment variable.
120+
## be controlled through an environment variable.
121121
return ($^O eq 'MSWin32' ||
122122
($^O eq 'cygwin' &&
123123
($] < 5.008 || (defined $ENV{PERLIO} && $ENV{PERLIO} eq 'crlf'))) ?

modules/WorkspaceCreator.pm

+4-4
Original file line numberDiff line numberDiff line change
@@ -1352,7 +1352,7 @@ sub generate_hierarchy {
13521352
}
13531353
elsif ($top ne $current) {
13541354
if ($current ne '.') {
1355-
## Write out the hierachical workspace
1355+
## Write out the hierarchical workspace
13561356
$self->cd($current);
13571357
($status, $errorString) = $self->generate_hierarchy($creator, \@saved, \%sinfo);
13581358

@@ -1535,7 +1535,7 @@ sub generate_project_files {
15351535

15361536
}
15371537

1538-
## Add implict project dependencies based on source files
1538+
## Add implicit project dependencies based on source files
15391539
## that have been used by multiple projects. If we do it here
15401540
## before we call generate_hierarchy(), we don't have to call it
15411541
## in generate_hierarchy() for each workspace.
@@ -1846,7 +1846,7 @@ sub generate_project_files_fork {
18461846
}
18471847
}
18481848

1849-
## Add implict project dependencies based on source files
1849+
## Add implicit project dependencies based on source files
18501850
## that have been used by multiple projects. If we do it here
18511851
## before we call generate_hierarchy(), we don't have to call it
18521852
## in generate_hierarchy() for each workspace.
@@ -2269,7 +2269,7 @@ sub generate_project_files_fork_socket {
22692269
}
22702270
}
22712271

2272-
## Add implict project dependencies based on source files
2272+
## Add implicit project dependencies based on source files
22732273
## that have been used by multiple projects. If we do it here
22742274
## before we call generate_hierarchy(), we don't have to call it
22752275
## in generate_hierarchy() for each workspace.

prj_install.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ sub usageAndExit {
469469
}
470470
}
471471
else {
472-
usageAndExit('Unkown option: ' . $arg);
472+
usageAndExit('Unknown option: ' . $arg);
473473
}
474474
}
475475
elsif (!defined $insdir) {

0 commit comments

Comments
 (0)