diff --git a/widgets/graph.c b/widgets/graph.c index 13b61229..527173c2 100644 --- a/widgets/graph.c +++ b/widgets/graph.c @@ -280,7 +280,7 @@ graph_draw(draw_context_t *ctx, /** Set various graph general properties. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A table with various properties set. */ @@ -340,7 +340,7 @@ luaA_graph_properties_set(lua_State *L) /** Set various plot graph properties. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A plot name. * \lparam A table with various properties set. @@ -403,7 +403,7 @@ luaA_graph_plot_properties_set(lua_State *L) /** Add data to a plot. * \param l The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A plot name. * \lparam A data value. diff --git a/widgets/progressbar.c b/widgets/progressbar.c index a907623b..e4eaa5d5 100644 --- a/widgets/progressbar.c +++ b/widgets/progressbar.c @@ -421,7 +421,7 @@ progressbar_draw(draw_context_t *ctx, * vertical. * \param L The Lua VM state. * \return The number of elements pushed on the stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A table with keys as properties names. */ @@ -451,7 +451,7 @@ luaA_progressbar_properties_set(lua_State *L) /** Set various progressbar bars properties: * \param L The Lua VM state. * \return The number of elements pushed on the stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A bar name. * \lparam A table with keys as properties names. @@ -513,7 +513,7 @@ luaA_progressbar_bar_properties_set(lua_State *L) /** Add a value to a progressbar bar. * \param L The Lua VM state. * \return The number of elements pushed on the stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A bar name. * \lparam A data value. diff --git a/widgets/taglist.c b/widgets/taglist.c index 7ae3a6fa..0b7ce29a 100644 --- a/widgets/taglist.c +++ b/widgets/taglist.c @@ -295,7 +295,7 @@ taglist_button_press(widget_node_t *w, * or has a client with urgency hint. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A table with keys to change: `normal', `focus' and `urgent'. */ @@ -334,7 +334,7 @@ luaA_taglist_text_set(lua_State *L) /** Set if the taglist must show the tags which have no client. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A boolean value, true to show empty tags, false otherwise. */ diff --git a/widgets/tasklist.c b/widgets/tasklist.c index a225e9b1..a31373c6 100644 --- a/widgets/tasklist.c +++ b/widgets/tasklist.c @@ -280,7 +280,7 @@ tasklist_button_press(widget_node_t *w, /** Set the tasklist show attribute. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A string: tags, focus or all. */ @@ -334,7 +334,7 @@ luaA_tasklist_showicons_set(lua_State *L) * urgency hint. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam A table with keys to change: `normal', `focus' and `urgent'. */ diff --git a/widgets/textbox.c b/widgets/textbox.c index 47086454..9b0a6c0d 100644 --- a/widgets/textbox.c +++ b/widgets/textbox.c @@ -100,7 +100,7 @@ textbox_destructor(widget_t *w) /** Set the text of a textbox. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam The text to set. */ @@ -122,7 +122,7 @@ luaA_textbox_text_set(lua_State *L) /** Set the width of a textbox. * \param L The Lua VM state. * \return The number of elements pushed on stack. - * \lstack + * \luastack * \lvalue A widget. * \lparam The width to set. */