From ad4c62e6392a4f7a057610839e91798ff8a3faf9 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sat, 30 Jan 2016 10:43:41 +0100 Subject: [PATCH] Fix warnings from ldoc Signed-off-by: Uli Schlachter --- lib/gears/shape.lua | 4 ++-- objects/client.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/gears/shape.lua b/lib/gears/shape.lua index dd759425..d57cbfdb 100644 --- a/lib/gears/shape.lua +++ b/lib/gears/shape.lua @@ -24,8 +24,8 @@ local module = {} ---- Add a rounded rectangle to the current path --- @note If the radius is bigger than either half side, it will be reduced +--- Add a rounded rectangle to the current path. +-- Note: If the radius is bigger than either half side, it will be reduced. -- @param cr A cairo content -- @param width The rectangle width -- @param height The rectangle height diff --git a/objects/client.c b/objects/client.c index db63309c..e7c71c28 100644 --- a/objects/client.c +++ b/objects/client.c @@ -2763,8 +2763,8 @@ client_class_setup(lua_State *L) */ signal_add(&client_class.signals, "list"); /** When 2 clients are swapped - * @args client The other client - * @args is_source If self is the source or the destination of the swap + * @tparam client client The other client + * @tparam boolean is_source If self is the source or the destination of the swap * @signal .swapped */ signal_add(&client_class.signals, "swapped");