From 7c4010eea341385f2ef32f1cad8f5e501ccc183b Mon Sep 17 00:00:00 2001 From: actionless Date: Sat, 8 Nov 2014 01:08:26 +0100 Subject: [PATCH] fix(lib: wibox: layout): fixed ldoc for set_spacing method --- lib/wibox/layout/fixed.lua.in | 3 ++- lib/wibox/layout/flex.lua.in | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/wibox/layout/fixed.lua.in b/lib/wibox/layout/fixed.lua.in index 33c3ad16d..343a41501 100644 --- a/lib/wibox/layout/fixed.lua.in +++ b/lib/wibox/layout/fixed.lua.in @@ -147,7 +147,8 @@ function fixed.vertical() return get_layout("y") end --- Add spacing between each layout widgets +--- Add spacing between each layout widgets +-- @param spacing Spacing between widgets. function fixed:set_spacing(spacing) self._spacing = spacing self:emit_signal("widget::updated") diff --git a/lib/wibox/layout/flex.lua.in b/lib/wibox/layout/flex.lua.in index 083735e6d..51293eb91 100644 --- a/lib/wibox/layout/flex.lua.in +++ b/lib/wibox/layout/flex.lua.in @@ -148,7 +148,8 @@ function flex.vertical() return get_layout("y") end --- Add spacing between each layout widgets +--- Add spacing between each layout widgets +-- @param spacing Spacing between widgets. function flex:set_spacing(spacing) self._spacing = spacing self:emit_signal("widget::updated")