From 7802271bf026627f983c5b95714a67cc1a700860 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 6 Feb 2003 19:57:14 +0000 Subject: Fix a bunch of typos in header comments. (#102422, Morten Welinder) 2003-02-06 Matthias Clasen * glib/gmessages.h: * glib/gmem.h: * glib/ghash.h: * glib/gasyncqueue.h: * glib/garray.h: * glib/ghook.h: * glib/gtypes.h: Fix a bunch of typos in header comments. (#102422, Morten Welinder) --- glib/garray.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'glib/garray.h') diff --git a/glib/garray.h b/glib/garray.h index bccd91a80..c29d15260 100644 --- a/glib/garray.h +++ b/glib/garray.h @@ -53,9 +53,9 @@ struct _GPtrArray guint len; }; -/* Resizable arrays, remove fills any cleared spot and shortens the +/* Resizable arrays. remove fills any cleared spot and shortens the * array, while preserving the order. remove_fast will distort the - * order by moving the last element to the position of the removed + * order by moving the last element to the position of the removed. */ #define g_array_append_val(a,v) g_array_append_vals (a, &(v), 1) @@ -95,9 +95,8 @@ void g_array_sort_with_data (GArray *array, gpointer user_data); /* Resizable pointer array. This interface is much less complicated - * than the above. Add appends appends a pointer. Remove fills any - * cleared spot and shortens the array. remove_fast will again distort - * order. + * than the above. Add appends a pointer. Remove fills any cleared + * spot and shortens the array. remove_fast will again distort order. */ #define g_ptr_array_index(array,index_) ((array)->pdata)[index_] GPtrArray* g_ptr_array_new (void); -- cgit v1.2.1