[fix, doc] TimeVal: typo

This commit is contained in:
Frans de Jonge
2017-09-11 13:17:52 +02:00
committed by GitHub
parent 9dee6c045c
commit 1a1c1e3f80

View File

@@ -6,7 +6,7 @@ A simple module to module to compare and do arithmetic with time values.
local tv_start = TimeVal:now()
-- Do some stuff.
-- You can add and substract `TimeVal` objects.
-- You can add and subtract `TimeVal` objects.
local tv_duration = TimeVal:now() - tv_start
-- If you need more precision (like 2.5 s),
-- you can add the milliseconds to the seconds.