summaryrefslogtreecommitdiff
path: root/gtk/gtktreestore.c
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2001-10-24 22:54:59 +0000
committerJonathan Blandford <jrb@src.gnome.org>2001-10-24 22:54:59 +0000
commit74b49141914e5d28ced01c371b7de9543396e82c (patch)
tree161aecd2403eab29b9d2b4e2cdc412b40acacfbf /gtk/gtktreestore.c
parentc9e39b2a34cc5eb5870710e653dd7a8154f04cfe (diff)
downloadgdk-pixbuf-74b49141914e5d28ced01c371b7de9543396e82c.tar.gz
Fix docs, #62808
Mon Oct 22 20:07:21 2001 Jonathan Blandford <jrb@redhat.com> * gtk/gtktreestore.c (gtk_tree_store_prepend): Fix docs, #62808
Diffstat (limited to 'gtk/gtktreestore.c')
-rw-r--r--gtk/gtktreestore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktreestore.c b/gtk/gtktreestore.c
index fca11bf7b..b815fc5e0 100644
--- a/gtk/gtktreestore.c
+++ b/gtk/gtktreestore.c
@@ -1180,7 +1180,7 @@ gtk_tree_store_insert_after (GtkTreeStore *tree_store,
* @parent: A valid #GtkTreeIter, or %NULL
*
* Prepends a new row to @tree_store. If @parent is non-NULL, then it will prepend
- * the new row before the last child of @parent, otherwise it will prepend a row
+ * the new row before the first child of @parent, otherwise it will prepend a row
* to the top level. @iter will be changed to point to this new row. The row
* will be empty after this function is called. To fill in values, you need to
* call @gtk_tree_store_set or @gtk_tree_store_set_value.