Doc fixes

This commit is contained in:
Matthias Clasen 2005-09-20 05:50:24 +00:00
parent a2ff6e7982
commit 3fef89349b
4 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-09-20 Matthias Clasen <mclasen@redhat.com>
* glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
(#316703, Mark Drago)
Mon Sep 19 17:23:23 2005 Tim Janik <timj@imendio.com>
* glib/gpattern.c: applied a patch from matthias which checks on the

View File

@ -1,3 +1,8 @@
2005-09-20 Matthias Clasen <mclasen@redhat.com>
* glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
(#316703, Mark Drago)
Mon Sep 19 17:23:23 2005 Tim Janik <timj@imendio.com>
* glib/gpattern.c: applied a patch from matthias which checks on the

View File

@ -1,3 +1,8 @@
2005-09-20 Matthias Clasen <mclasen@redhat.com>
* glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
(#316703, Mark Drago)
Mon Sep 19 17:23:23 2005 Tim Janik <timj@imendio.com>
* glib/gpattern.c: applied a patch from matthias which checks on the

View File

@ -975,7 +975,7 @@ g_queue_insert_after (GQueue *queue,
* called with two elements of the @queue and @user_data. It should
* return 0 if the elements are equal, a negative value if the first
* element comes before the second, and a positive value if the second
* element comes after the first.
* element comes before the first.
* @user_data: user data passed to @func.
*
* Inserts @data into @queue using @func to determine the new position.