timer: Add a reminder to apply the existing naming conventions

Not now because changing things for the sake of changing things in
a point release is a bad idea, but eventually.
This commit is contained in:
Emmanuel Lepage Vallee 2018-08-05 16:52:34 -04:00
parent efe82faf1c
commit 106fba6dd6
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ function timer.new(args)
args = args or {} args = args or {}
local ret = object() local ret = object()
ret.data = { timeout = 0 } ret.data = { timeout = 0 } --TODO v5 rename to ._private
setmetatable(ret, timer_instance_mt) setmetatable(ret, timer_instance_mt)
for k, v in pairs(args) do for k, v in pairs(args) do