From 3724b4dd313c5b94c4564296d634318f43f5db3c Mon Sep 17 00:00:00 2001 From: Qball Date: Sun, 26 Jan 2025 21:40:24 +0100 Subject: [PATCH] [Mode] Fix wrong documentation header. --- include/mode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mode.h b/include/mode.h index fd4219e6..7f568d81 100644 --- a/include/mode.h +++ b/include/mode.h @@ -284,14 +284,14 @@ ModeMode mode_completer_result(Mode *sw, int menu_retv, char **input, gboolean mode_is_completer(const Mode *sw); /** - * @param sw The mode to query + * @param mode The mode to query * * @returns the modes ABI version. */ int mode_get_abi_version(Mode *const mode); /** - * @param sw The mode to query + * @param mode The mode to query * @param mod The GModule used to load the mode * * Set GModule used to load this plugin, this is used to @@ -299,7 +299,7 @@ int mode_get_abi_version(Mode *const mode); */ void mode_plugin_set_module(Mode *mode, GModule *mod); /** - * @param sw The mode to query + * @param mode The mode to query * * @returns the GModule used to load this plugin. NULL if not a plugin. */