summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2023-03-20 15:41:25 -0700
committerChristian Hergert <chergert@redhat.com>2023-03-22 16:44:35 -0700
commite2ede7d04fbf0b034873236f4558102dff1abcf9 (patch)
treed087591d72303a1526286bd4cafc8d731b687ca2
parent55e6f307b0df3f2205ea44ed27ddff5f92b0e770 (diff)
downloadlibpeas-e2ede7d04fbf0b034873236f4558102dff1abcf9.tar.gz
libpeas: fix some GI warnings
-rw-r--r--libpeas/peas-extension-set.c4
-rw-r--r--libpeas/peas-extension-set.h4
2 files changed, 3 insertions, 5 deletions
diff --git a/libpeas/peas-extension-set.c b/libpeas/peas-extension-set.c
index dafb73d..d98105b 100644
--- a/libpeas/peas-extension-set.c
+++ b/libpeas/peas-extension-set.c
@@ -346,7 +346,7 @@ peas_extension_set_class_init (PeasExtensionSetClass *klass)
* PeasExtensionSet::extension-added:
* @set: A #PeasExtensionSet.
* @info: A #PeasPluginInfo.
- * @exten: A #PeasExtension.
+ * @extension: A #PeasExtension.
*
* Emitted when a new extension has been added to the #PeasExtensionSet.
*
@@ -377,7 +377,7 @@ peas_extension_set_class_init (PeasExtensionSetClass *klass)
* PeasExtensionSet::extension-removed:
* @set: A #PeasExtensionSet.
* @info: A #PeasPluginInfo.
- * @exten: A #PeasExtension.
+ * @extension: A #PeasExtension.
*
* Emitted when a new extension is about to be removed from the
* #PeasExtensionSet.
diff --git a/libpeas/peas-extension-set.h b/libpeas/peas-extension-set.h
index 359300b..3ccee7d 100644
--- a/libpeas/peas-extension-set.h
+++ b/libpeas/peas-extension-set.h
@@ -43,13 +43,11 @@ G_DECLARE_FINAL_TYPE (PeasExtensionSet, peas_extension_set, PEAS, EXTENSION_SET,
* PeasExtensionSetForeachFunc:
* @set: A #PeasExtensionSet.
* @info: A #PeasPluginInfo.
- * @exten: A #PeasExtension.
+ * @extension: The extension instance.
* @data: Optional data passed to the function.
*
* This function is passed to [method@ExtensionSet.foreach] and
* will be called for each extension in @set.
- *
- * Since: 1.2
*/
typedef void (*PeasExtensionSetForeachFunc) (PeasExtensionSet *set,
PeasPluginInfo *info,