Skip to content

Commit f5e81de

Browse files
committed
fix: remove superfluous quotation mark
NeoVim tried to be helpful. Signed-off-by: André Jaenisch <[email protected]>
1 parent 9604aef commit f5e81de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

weather-api-widget/weather.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ local function worker(user_args)
439439
})
440440

441441
table.insert(temp_below, wibox.widget {
442-
markup = '<span foreground=""'
442+
markup = '<span foreground="'
443443
.. (tonumber(hour.temp_c) > 0 and '#2E3440' or '#ECEFF4') .. '">'
444444
.. string.format('%.0f', hour.temp_c) .. '°' .. '</span>',
445445
align = 'center',

0 commit comments

Comments
 (0)