diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/3rd/Jass/config.lua | 2 | ||||
-rw-r--r-- | meta/3rd/example/config.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/3rd/Jass/config.lua b/meta/3rd/Jass/config.lua index 5e641990..dd37d66c 100644 --- a/meta/3rd/Jass/config.lua +++ b/meta/3rd/Jass/config.lua @@ -2,7 +2,7 @@ words = {'jass.common'} configs = { { - name = 'Lua.runtime.version' + name = 'Lua.runtime.version', type = 'set', value = 'Lua 5.3', }, diff --git a/meta/3rd/example/config.lua b/meta/3rd/example/config.lua index 7b964d54..17b6ab06 100644 --- a/meta/3rd/example/config.lua +++ b/meta/3rd/example/config.lua @@ -16,7 +16,7 @@ configs = { } } for _, name in ipairs {'global2', 'global3', 'global4'} do - config[#config+1] = { + configs[#configs+1] = { name = 'Lua.diagnostics.globals', type = 'add', value = name, |