From 623f7d977284a12e0f73e4a4838f9773370f9148 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Fri, 13 Feb 1998 23:00:54 +0000 Subject: [PATCH] Fixed some incorrect information. --- docs/refcounting.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/refcounting.txt b/docs/refcounting.txt index 82817d5c41..7130f1654c 100644 --- a/docs/refcounting.txt +++ b/docs/refcounting.txt @@ -7,9 +7,10 @@ functions that follow these conventions: *_new: Create a new structure with a reference count of 1. *_ref: Increase ref count by one. *_unref: Decrease ref count by one. If the count drops to zero, - run aprropriate finalization code and free the memory. - No user visible actions should take place, like - destryoing windows, etc. + run appropriate finalization code and free the memory. + For data structures with a _destroy function, it will be + invoked at this point, if the data structure is not + already in a destroyed state. GtkObjects also provide the following functions: