Skip to content

Commit ac8ba36

Browse files
authored
Merge pull request #2009 from Jarod42/typos
Fix typos in comment.
2 parents 2a3f3b7 + af02f14 commit ac8ba36

File tree

25 files changed

+32
-32
lines changed

25 files changed

+32
-32
lines changed

modules/android/vsandroid_androidproj.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@
155155
end)
156156

157157
function android.link(cfg, file)
158-
-- default the seperator to '/' as that is what is searched for
159-
-- below. Otherwise the function will use target seperator which
158+
-- default the separator to '/' as that is what is searched for
159+
-- below. Otherwise the function will use target separator which
160160
-- could be '\\' and result in failure to create links.
161161
local fname = path.translate(file.relpath, '/')
162162

modules/d/actions/gmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949

5050
--
51-
-- Override the GMake action 'onProject' funtion to provide
51+
-- Override the GMake action 'onProject' function to provide
5252
-- D knowledge...
5353
--
5454
p.override( gmake, "onProject", function(oldfn, prj)

modules/d/actions/vcxproj.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
function m.dCompiler(cfg)
3434
local dc = nil
35-
-- TODO: chech for explicit DMD or LDC request?
35+
-- TODO: check for explicit DMD or LDC request?
3636
if _OPTIONS.dc then
3737
local dcMap = {
3838
["dmd"] = "DMD",

modules/d/d.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
end
2525

2626
--
27-
-- Patch the path table to provide knowledge of D file extenstions
27+
-- Patch the path table to provide knowledge of D file extensions
2828
--
2929
function path.isdfile(fname)
3030
return path.hasextension(fname, { ".d" })

modules/gmake/gmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139

140140
--
141141
-- Rules for file ops based on the shell type. Can't use defines and $@ because
142-
-- it screws up the escaping of spaces and parethesis (anyone know a fix?)
142+
-- it screws up the escaping of spaces and parenthesis (anyone know a fix?)
143143
--
144144

145145
function make.mkdir(dirname)

modules/gmake/tests/cpp/test_ldflags.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
end
4040

4141
--
42-
-- Check addition of library search directores.
42+
-- Check addition of library search directories.
4343
--
4444

4545
function suite.checkLibDirs()

modules/gmake2/gmake2.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118

119119
--
120120
-- Rules for file ops based on the shell type. Can't use defines and $@ because
121-
-- it screws up the escaping of spaces and parethesis (anyone know a fix?)
121+
-- it screws up the escaping of spaces and parenthesis (anyone know a fix?)
122122
--
123123

124124
function gmake2.mkdir(dirname)

modules/gmake2/tests/test_gmake2_ldflags.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ALL_LDFLAGS += $(LDFLAGS)
4040
end
4141

4242
--
43-
-- Check addition of library search directores.
43+
-- Check addition of library search directories.
4444
--
4545

4646
function suite.checkLibDirs()

modules/self-test/test_assertions.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
format = table.remove(arg, 1)
8383
end
8484

85-
-- convert nils into something more usefuls
85+
-- convert nils into something more useful
8686
for i = 1, #arg do
8787
if (arg[i] == nil) then
8888
arg[i] = "(nil)"

modules/vstudio/tests/vc2010/test_config_props.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646

4747
--
48-
-- Check the configuration type for differenet project kinds.
48+
-- Check the configuration type for different project kinds.
4949
--
5050

5151
function suite.configurationType_onConsoleApp()

0 commit comments

Comments
 (0)