aboutsummaryrefslogtreecommitdiff
path: root/helpers.lua
diff options
context:
space:
mode:
Diffstat (limited to 'helpers.lua')
-rw-r--r--helpers.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers.lua b/helpers.lua
index 93a701b..4c15690 100644
--- a/helpers.lua
+++ b/helpers.lua
@@ -33,8 +33,8 @@ local scroller = {}
-- {{{ Helper functions
-- {{{ Loader of vicious modules
-function helpers.wrequire(table, key)
- local module = rawget(table, key)
+function helpers.wrequire(table, key)
+ local module = rawget(table, key)
return module or require(table._NAME .. "." .. key)
end
-- }}}