summaryrefslogtreecommitdiff
path: root/docs/refcounting.txt
diff options
context:
space:
mode:
authorGMT 2000 Tony Gale <gale@gtk.org>2000-02-29 13:15:10 +0000
committerTony Gale <gale@src.gnome.org>2000-02-29 13:15:10 +0000
commit6ab2659931513e1ba79727cefc613dd3691801d8 (patch)
treecfecf7113738687ceab805f8ab1125be5ad1450b /docs/refcounting.txt
parent160e3574ac503cf7337d1d57a071583587dcbe33 (diff)
downloadgtk+-6ab2659931513e1ba79727cefc613dd3691801d8.tar.gz
Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
Tue Feb 29 13:10:00 GMT 2000 Tony Gale <gale@gtk.org> * gdk/gdkwindow.h gdk/x11/gxid.c gtk/gtkclist.c gtk/gtkclist.h gtk/gtkctree.c gtk/gtkmenu.h gtk/gtkwidget.c gtk/testgtk.c docs/styles.txt docs/refcounting.txt docs/gtkfaq.sgml docs/gtk_tut.sgml docs/gtk.texi TODO: Spelling/grammar fixes from Martin Buchholz <martin@xemacs.org>
Diffstat (limited to 'docs/refcounting.txt')
-rw-r--r--docs/refcounting.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/refcounting.txt b/docs/refcounting.txt
index 61a161d39f..0c9de31336 100644
--- a/docs/refcounting.txt
+++ b/docs/refcounting.txt
@@ -15,7 +15,7 @@ functions that follow these conventions:
GtkObjects also provide the following functions:
*_destroy: Render an object `unusable', but as long as there are
- references to it, it's allocated memory will not be freed.
+ references to it, its allocated memory will not be freed.
*_sink: Clear a GtkObjects `floating' state and decrement the
reference count by 1.
@@ -248,7 +248,7 @@ widget, it needs to hold a reference to it.
Example code sequences that require reference wraps:
/* gtk_container_remove() will unparent the child and therefore
- * cause it's reference count to be decremented by one.
+ * cause its reference count to be decremented by one.
*/
gtk_widget_ref (widget);
gtk_container_remove (container, widget);