summaryrefslogtreecommitdiff
path: root/glib/garray.h
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2003-02-06 19:57:14 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2003-02-06 19:57:14 +0000
commit7802271bf026627f983c5b95714a67cc1a700860 (patch)
treed6d76d2046ae0decb694e6bb32e75ca59b6d6a4b /glib/garray.h
parent5d48d565e3fc10a29091e66991b6bed85577f0e7 (diff)
downloadglib-7802271bf026627f983c5b95714a67cc1a700860.tar.gz
Fix a bunch of typos in header comments. (#102422, Morten Welinder)
2003-02-06 Matthias Clasen <maclas@gmx.de> * 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)
Diffstat (limited to 'glib/garray.h')
-rw-r--r--glib/garray.h9
1 files changed, 4 insertions, 5 deletions
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);