Docs: Don't use the code tag

This commit is contained in:
Matthias Clasen
2014-01-31 22:05:04 -05:00
parent 17f51583a8
commit a4c33c6f8b
6 changed files with 28 additions and 26 deletions

View File

@@ -1370,9 +1370,8 @@ g_signal_query (guint signal_id,
* be used, but they cannot be mixed.
*
* If 0 is used for @class_offset subclasses cannot override the class handler
* in their <code>class_init</code> method by doing
* <code>super_class->signal_handler = my_signal_handler</code>. Instead they
* will have to use g_signal_override_class_handler().
* in their class_init method by doing super_class->signal_handler = my_signal_handler.
* Instead they will have to use g_signal_override_class_handler().
*
* If c_marshaller is %NULL, g_cclosure_marshal_generic() will be used as
* the marshaller for this signal.

View File

@@ -295,8 +295,7 @@ g_value_array_insert (GValueArray *value_array,
* g_value_array_remove:
* @value_array: #GValueArray to remove an element from
* @index_: position of value to remove, which must be less than
* <code>value_array-><link
* linkend="GValueArray.n-values">n_values</link></code>
* @value_array->n_values
*
* Remove the value at position @index_ from @value_array.
*