From 43c7b5de358e8a158e9ed3c396d3866845682515 Mon Sep 17 00:00:00 2001 From: unwox Date: Wed, 16 Oct 2024 22:42:37 +0600 Subject: improve html library handling of self-closing tags --- lib/utils.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/utils.fnl b/lib/utils.fnl index fcc235c..405bf72 100644 --- a/lib/utils.fnl +++ b/lib/utils.fnl @@ -5,7 +5,7 @@ (fn measure [what f] (local start (luna.utf8.now)) (local res (table.pack (f))) - (print (.. what ": " (/ (- (luna.utf8.now) start) 1e6))) + (print (.. what ": " (/ (- (luna.time.now) start) 1e6))) (values (table.unpack res))) {: must : measure} -- cgit v1.2.3