From d72893692e2c2dcce7d0c4897793dfd011c2554a Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sun, 9 Jul 2017 18:59:17 +0200 Subject: [PATCH] calendar_popup: Fix method name entries Signed-off-by: Uli Schlachter --- lib/awful/widget/calendar_popup.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/awful/widget/calendar_popup.lua b/lib/awful/widget/calendar_popup.lua index f011ccd9..156cb29e 100644 --- a/lib/awful/widget/calendar_popup.lua +++ b/lib/awful/widget/calendar_popup.lua @@ -344,7 +344,7 @@ end -- @tparam table args.style_normal Cell style for the normal day cells (see `cell_properties`) -- @tparam table args.style_focus Cell style for the current day cell (see `cell_properties`) -- @treturn wibox A wibox containing the calendar --- @function awful.calendar.month +-- @function awful.widget.calendar.month function calendar_popup.month(args) return get_cal_wibox("month", args) end @@ -380,7 +380,7 @@ end -- @tparam table args.style_normal Cell style for the normal day cells (see `cell_properties`) -- @tparam table args.style_focus Cell style for the current day cell (see `cell_properties`) -- @treturn wibox A wibox containing the calendar --- @function awful.calendar.year +-- @function awful.widget.calendar.year function calendar_popup.year(args) return get_cal_wibox("year", args) end