From 36767762270a9ec0f510e4573e0b40f77597aa32 Mon Sep 17 00:00:00 2001 From: Justin Endacott Date: Tue, 6 Dec 2016 18:40:40 +1000 Subject: [PATCH] Fix typo in return statement --- widgets/pulsebar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/pulsebar.lua b/widgets/pulsebar.lua index fc2951b..006515c 100644 --- a/widgets/pulsebar.lua +++ b/widgets/pulsebar.lua @@ -178,4 +178,4 @@ local function worker(args) return pulsebar end -eturn setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end }) +return setmetatable(pulsebar, { __call = function(_, ...) return worker(...) end }) -- 2.39.2