Fix typo in example wibox.widget.textbox file (#3795)
In tests/examples/wibox/widget/textbox/line_spacing.lua, there is a typo It's supposed to be "has", but it's "shas", this is obviously not a grammar issue, so it's a typo.
This commit is contained in:
parent
b54e50ad6c
commit
b6263bf209
|
@ -22,7 +22,7 @@ local l = wibox.layout.grid.vertical(4)
|
||||||
--DOC_HIDE_END
|
--DOC_HIDE_END
|
||||||
|
|
||||||
for _, spacing in ipairs {0.0, 0.1, 0.5, 0.9, 1, 1.5, 2.0, 2.5} do
|
for _, spacing in ipairs {0.0, 0.1, 0.5, 0.9, 1, 1.5, 2.0, 2.5} do
|
||||||
local text = "This text shas a line\nspacing of "..tostring(spacing).. "\nunits."
|
local text = "This text has a line\nspacing of "..tostring(spacing).. "\nunits."
|
||||||
--DOC_NEWLINE
|
--DOC_NEWLINE
|
||||||
l:add( --DOC_HIDE
|
l:add( --DOC_HIDE
|
||||||
widget{
|
widget{
|
||||||
|
|
Loading…
Reference in New Issue