summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2023-08-21 13:36:58 +0000
committerMichael Catanzaro <mcatanzaro@redhat.com>2023-08-21 13:36:58 +0000
commit8754a57d95d5140fe8a7fef74848240baa7dea54 (patch)
tree4b3dc8c90be4196ad3f312da36ed110c153c55c9
parent8673c3f757d2c64decfd448a405546107b703a20 (diff)
parent22752a51c5a06af0309ef650969fd0de2becb6df (diff)
downloadglib-8754a57d95d5140fe8a7fef74848240baa7dea54.tar.gz
Merge branch '3083-option-docs-list' into 'main'
goption: Fix list formatting in documentation comment Closes #3083 See merge request GNOME/glib!3546
-rw-r--r--glib/goption.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/glib/goption.h b/glib/goption.h
index 739311f6e..dcb0e554c 100644
--- a/glib/goption.h
+++ b/glib/goption.h
@@ -234,13 +234,13 @@ GQuark g_option_error_quark (void);
* called to handle the extra argument. Otherwise, @arg_data is a
* pointer to a location to store the value, the required type of
* the location depends on the @arg type:
- * - %G_OPTION_ARG_NONE: %gboolean
- * - %G_OPTION_ARG_STRING: %gchar*
- * - %G_OPTION_ARG_INT: %gint
- * - %G_OPTION_ARG_FILENAME: %gchar*
- * - %G_OPTION_ARG_STRING_ARRAY: %gchar**
- * - %G_OPTION_ARG_FILENAME_ARRAY: %gchar**
- * - %G_OPTION_ARG_DOUBLE: %gdouble
+ * - %G_OPTION_ARG_NONE: %gboolean
+ * - %G_OPTION_ARG_STRING: %gchar*
+ * - %G_OPTION_ARG_INT: %gint
+ * - %G_OPTION_ARG_FILENAME: %gchar*
+ * - %G_OPTION_ARG_STRING_ARRAY: %gchar**
+ * - %G_OPTION_ARG_FILENAME_ARRAY: %gchar**
+ * - %G_OPTION_ARG_DOUBLE: %gdouble
* If @arg type is %G_OPTION_ARG_STRING or %G_OPTION_ARG_FILENAME,
* the location will contain a newly allocated string if the option
* was given. That string needs to be freed by the callee using g_free().