diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-10 05:42:32 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-10 05:42:32 +0100 |
commit | 11b00845512b6af26000bd40dbf9f349f8886535 (patch) | |
tree | 9186c5db947b241b5590afab18bd6e720f95046a /util/multitable.lua | |
parent | 599acace643b98ea99f64b2544591e65caa9c533 (diff) | |
download | prosody-11b00845512b6af26000bd40dbf9f349f8886535.tar.gz prosody-11b00845512b6af26000bd40dbf9f349f8886535.zip |
util: Various minor changes to please [luacheck]
Diffstat (limited to 'util/multitable.lua')
-rw-r--r-- | util/multitable.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/multitable.lua b/util/multitable.lua index e4321d3d..c472d731 100644 --- a/util/multitable.lua +++ b/util/multitable.lua @@ -132,7 +132,7 @@ local function iter(self, ...) local maxdepth = select("#", ...); local stack = { self.data }; local keys = { }; - local function it(self) + local function it(self) -- luacheck: ignore 432/self local depth = #stack; local key = next(stack[depth], keys[depth]); if key == nil then -- Go up the stack |