From 24ab95582b03ec947fc512cb85545fe87026baf1 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Sat, 31 May 2014 19:21:23 +0100 Subject: [PATCH] docs: Replace XML tag with back ticks https://bugzilla.gnome.org/show_bug.cgi?id=731050 --- gobject/gtype.h | 3 +-- gobject/gtypemodule.h | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/gobject/gtype.h b/gobject/gtype.h index 81803fc21..a8b840dad 100644 --- a/gobject/gtype.h +++ b/gobject/gtype.h @@ -1076,8 +1076,7 @@ struct _GInterfaceInfo * @value_init: Default initialize @values contents by poking values * directly into the value->data array. The data array of * the #GValue passed into this function was zero-filled - * with memset(), so no care has to - * be taken to free any + * with `memset()`, so no care has to be taken to free any * old contents. E.g. for the implementation of a string * value that may never be %NULL, the implementation might * look like: diff --git a/gobject/gtypemodule.h b/gobject/gtypemodule.h index 7b2a29cea..e4cae1a0c 100644 --- a/gobject/gtypemodule.h +++ b/gobject/gtypemodule.h @@ -92,9 +92,9 @@ struct _GTypeModuleClass * class initialization function, an instance initialization function (see * #GTypeInfo for information about these) and a static variable named * @t_n_parent_class pointing to the parent class. Furthermore, - * it defines a *_get_type() and a static - * *_register_type() function for use in your - * module_init(). + * it defines a `*_get_type()` and a static `*_register_type()` functions + * for use in your `module_init()`. + * * See G_DEFINE_DYNAMIC_TYPE_EXTENDED() for an example. * * Since: 2.14