stand/lua: dumpModules => lsModules

rgrimes@ notes that this behavior is more befitting of the latter name than
the former, and I'm inclined to agree.

Reported by:	rgrimes
This commit is contained in:
kevans 2018-02-17 14:30:39 +00:00
parent 1536b4e784
commit 7e9e08451d

View File

@ -37,7 +37,7 @@ function config.setKey(k, n, v)
modules[k][n] = v;
end
function config.dumpModules()
function config.lsModules()
print("== Dumping modules");
for k, v in pairs(modules) do
print(k, v.load);