summaryrefslogtreecommitdiff
path: root/xmake/core/base/os.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-10-10 00:01:01 +0800
committerruki <[email protected]>2021-10-10 00:01:01 +0800
commitff96f6c08fcf72b44226626e1d04be60e92ac37c (patch)
tree772bc2adb964e9488ea54c59da642c59710c69b4 /xmake/core/base/os.lua
parent1af0820871a06217312fcee22b68e15954fc553a (diff)
fix some unpack
Diffstat (limited to 'xmake/core/base/os.lua')
-rw-r--r--xmake/core/base/os.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua
index 312d5705d..a4fdb570e 100644
--- a/xmake/core/base/os.lua
+++ b/xmake/core/base/os.lua
@@ -377,7 +377,7 @@ end
-- match directories
--
--- @note only return {} without count to simplify code, e.g. unpack(os.dirs(""))
+-- @note only return {} without count to simplify code, e.g. table.unpack(os.dirs(""))
--
function os.dirs(pattern, callback)
return (os.match(pattern, 'd', callback))