diff options
| author | FrankHB <[email protected]> | 2019-08-11 18:06:42 +0800 |
|---|---|---|
| committer | FrankHB <[email protected]> | 2019-08-11 18:06:42 +0800 |
| commit | 0bdcae97d8d9b2b3afe725f9b857a9994d3b28fa (patch) | |
| tree | 4a3282446375c2a3e0165170f626a3ca827269bc /xmake/modules/core/tools/dmd.lua | |
| parent | 35878524802b5144368f4bcad14264611a2fcff9 (diff) | |
fix typos
Changed all 'complie' to 'compile'. Added missing 'the' for some cases.
Signed-off-by: FrankHB <[email protected]>
Diffstat (limited to 'xmake/modules/core/tools/dmd.lua')
| -rw-r--r-- | xmake/modules/core/tools/dmd.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/core/tools/dmd.lua b/xmake/modules/core/tools/dmd.lua index 6f92b402d..7c039319e 100644 --- a/xmake/modules/core/tools/dmd.lua +++ b/xmake/modules/core/tools/dmd.lua @@ -161,12 +161,12 @@ function link(self, objectfiles, targetkind, targetfile, flags) os.runv(linkargv(self, objectfiles, targetkind, targetfile, flags)) end --- make the complie arguments list +-- make the compile arguments list function compargv(self, sourcefiles, objectfile, flags) return self:program(), table.join("-c", flags, "-of" .. objectfile, sourcefiles) end --- complie the source file +-- compile the source file function compile(self, sourcefiles, objectfile, dependinfo, flags) -- ensure the object directory |
