summaryrefslogtreecommitdiff
path: root/gobject/gclosure.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-05 22:57:27 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-06 08:07:16 -0500
commita35d8a4c77fbb9a8dd143742c29c0807ec99412b (patch)
tree2c2905f62a66793d38931576b776dcd1a282f504 /gobject/gclosure.c
parentb766db0878ae686032f73e0c96571dae58595d66 (diff)
downloadglib-a35d8a4c77fbb9a8dd143742c29c0807ec99412b.tar.gz
Docs: use quotes instead of firstterm
Diffstat (limited to 'gobject/gclosure.c')
-rw-r--r--gobject/gclosure.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gobject/gclosure.c b/gobject/gclosure.c
index fa1c1a9aa..cc0550052 100644
--- a/gobject/gclosure.c
+++ b/gobject/gclosure.c
@@ -601,13 +601,13 @@ g_closure_unref (GClosure *closure)
* still being held
*
* Takes over the initial ownership of a closure. Each closure is
- * initially created in a <firstterm>floating</firstterm> state, which
- * means that the initial reference count is not owned by any caller.
- * g_closure_sink() checks to see if the object is still floating, and
- * if so, unsets the floating state and decreases the reference
- * count. If the closure is not floating, g_closure_sink() does
- * nothing. The reason for the existence of the floating state is to
- * prevent cumbersome code sequences like:
+ * initially created in a "floating" state, which means that the initial
+ * reference count is not owned by any caller. g_closure_sink() checks
+ * to see if the object is still floating, and if so, unsets the
+ * floating state and decreases the reference count. If the closure
+ * is not floating, g_closure_sink() does nothing. The reason for the
+ * existence of the floating state is to prevent cumbersome code
+ * sequences like:
* |[<!-- language="C" -->
* closure = g_cclosure_new (cb_func, cb_data);
* g_source_set_closure (source, closure);