From 1a1c1e3f8040e7c136c3ebaa075d78ae855aa44a Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Mon, 11 Sep 2017 13:17:52 +0200 Subject: [PATCH] [fix, doc] TimeVal: typo --- frontend/ui/timeval.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/ui/timeval.lua b/frontend/ui/timeval.lua index 4a1c811a2..1c4cb171b 100644 --- a/frontend/ui/timeval.lua +++ b/frontend/ui/timeval.lua @@ -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.