From: Justin Endacott <justin.endacott@gmail.com>
Date: Tue, 6 Dec 2016 08:40:40 +0000 (+1000)
Subject: Fix typo in return statement
X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/36767762270a9ec0f510e4573e0b40f77597aa32?ds=inline

Fix typo in return statement
---

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 })