summaryrefslogtreecommitdiff
path: root/docs/reference/gobject/tut_howto.xml
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2014-12-16 11:23:12 +0000
committerPhilip Withnall <philip.withnall@collabora.co.uk>2014-12-16 17:11:11 +0000
commite98a5828d3ada47b080ab6d69c9349e2c5a4ee5d (patch)
tree1b72efc81feafcc8f6c91408d8f13f4516d12577 /docs/reference/gobject/tut_howto.xml
parent924f269763fec66194d3357285f6d860986f66b2 (diff)
downloadglib-e98a5828d3ada47b080ab6d69c9349e2c5a4ee5d.tar.gz
docs: Remove a mention of g_clear_object() being atomic
It is no longer atomic. https://bugzilla.gnome.org/show_bug.cgi?id=741589
Diffstat (limited to 'docs/reference/gobject/tut_howto.xml')
-rw-r--r--docs/reference/gobject/tut_howto.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/gobject/tut_howto.xml b/docs/reference/gobject/tut_howto.xml
index 7ca120cce..f3d60604a 100644
--- a/docs/reference/gobject/tut_howto.xml
+++ b/docs/reference/gobject/tut_howto.xml
@@ -439,7 +439,7 @@ maman_bar_dispose (GObject *gobject)
/* dispose() might be called multiple times, so we must guard against
* calling g_object_unref() on an invalid GObject by setting the member
- * NULL; g_clear_object() does this for us, atomically.
+ * NULL; g_clear_object() does this for us.
*/
g_clear_object (&amp;self->priv->an_object);