diff options
author | Kristian Rietveld <kris@gtk.org> | 2002-04-16 22:15:27 +0000 |
---|---|---|
committer | Kristian Rietveld <kristian@src.gnome.org> | 2002-04-16 22:15:27 +0000 |
commit | 3140315f1763bec0db3931e9e1d8a84c56315e5f (patch) | |
tree | c501f7c8cb6f7994f9e99288ffc16c743fb69747 /gtk/gtktreestore.c | |
parent | 8fbac80bc4f00b15a49061fe388fbe2366c77101 (diff) | |
download | gtk+-3140315f1763bec0db3931e9e1d8a84c56315e5f.tar.gz |
fix docs
Wed Apr 17 00:21:36 2002 Kristian Rietveld <kris@gtk.org>
* gtk/gtktreestore.c (gtk_tree_store_insert_before): fix docs
Diffstat (limited to 'gtk/gtktreestore.c')
-rw-r--r-- | gtk/gtktreestore.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtktreestore.c b/gtk/gtktreestore.c index 9d10f986a7..b3cf3ed4d5 100644 --- a/gtk/gtktreestore.c +++ b/gtk/gtktreestore.c @@ -1137,10 +1137,10 @@ gtk_tree_store_insert (GtkTreeStore *tree_store, * @sibling: A valid #GtkTreeIter, or %NULL * * Inserts a new row before @sibling. If @sibling is %NULL, then the row will - * be appended to the beginning of the @parent 's children. If @parent and - * @sibling are %NULL, then the row will be appended to the toplevel. If both - * @sibling and @parent are set, then @parent must be the parent of @sibling. - * When @sibling is set, @parent is optional. + * be appended to @parent 's children. If @parent and @sibling are %NULL, then + * the row will be appended to the toplevel. If both @sibling and @parent are + * set, then @parent must be the parent of @sibling. When @sibling is set, + * @parent is optional. * * @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 |