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:
parent
efe82faf1c
commit
106fba6dd6
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue