summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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