summaryrefslogtreecommitdiff
path: root/gtk/gtkradioaction.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkradioaction.c')
-rw-r--r--gtk/gtkradioaction.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkradioaction.c b/gtk/gtkradioaction.c
index b2c8adee76..772dd8c57c 100644
--- a/gtk/gtkradioaction.c
+++ b/gtk/gtkradioaction.c
@@ -377,18 +377,18 @@ create_menu_item (GtkAction *action)
* to the group.
*
* A common way to set up a group of radio group is the following:
- * <informalexample><programlisting>
+ * |[
* GSList *group = NULL;
* GtkRadioAction *action;
*
- * while (/<!-- -->* more actions to add *<!-- -->/)
+ * while (/&ast; more actions to add &ast;/)
* {
* action = gtk_radio_action_new (...);
*
* gtk_radio_action_set_group (action, group);
* group = gtk_radio_action_get_group (action);
* }
- * </programlisting></informalexample>
+ * ]|
*
* Returns: the list representing the radio group for this object
*