summaryrefslogtreecommitdiff
path: root/xmake
diff options
context:
space:
mode:
authorruki <[email protected]>2020-11-28 19:50:20 +0800
committerruki <[email protected]>2020-11-28 19:50:20 +0800
commit65b5479b3a78c1942f590e09286b1cb043fcbebd (patch)
treee08d62f5fd7834d38c1a2916118f1c92a488b4fa /xmake
parent32e5e809ec5451cb0265ac2c6f6f44766734c573 (diff)
fix typo
Diffstat (limited to 'xmake')
-rw-r--r--xmake/modules/detect/tools/find_sdcc.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/xmake/modules/detect/tools/find_sdcc.lua b/xmake/modules/detect/tools/find_sdcc.lua
index f5db20b32..de668e80a 100644
--- a/xmake/modules/detect/tools/find_sdcc.lua
+++ b/xmake/modules/detect/tools/find_sdcc.lua
@@ -22,7 +22,7 @@
import("lib.detect.find_program")
import("lib.detect.find_programver")
--- find dmd
+-- find sdcc
--
-- @param opt the argument options, e.g. {version = true}
--
@@ -30,7 +30,7 @@ import("lib.detect.find_programver")
--
-- @code
--
--- local dmd = find_sdcc()
+-- local sdcc = find_sdcc()
--
-- @endcode
--
@@ -61,7 +61,5 @@ function main(opt)
if program and opt and opt.version then
version = find_programver(program, opt)
end
-
- -- ok?
return program, version
end