Clarify docs. (#364026, Bastian Nocera)

2007-03-06  Matthias Clasen  <mclasen@redhat.com>

        * glib/gstring.c (g_str_equal): Clarify docs.  (#364026,
        Bastian Nocera)



svn path=/trunk/; revision=5379
This commit is contained in:
Matthias Clasen 2007-03-06 19:27:20 +00:00 committed by Matthias Clasen
parent cc3e80c26a
commit 836cac1512
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2007-03-06 Matthias Clasen <mclasen@redhat.com>
* glib/gstring.c (g_str_equal): Clarify docs. (#364026,
Bastian Nocera)
2007-03-06 Matthew Barnes <mbarnes@redhat.com>
* glib/gqueue.h:

View File

@ -61,9 +61,9 @@ struct _GStringChunk
* @v1: a key.
* @v2: a key to compare with @v1.
*
* Compares two strings and returns %TRUE if they are equal.
* It can be passed to g_hash_table_new() as the @key_equal_func
* parameter, when using strings as keys in a #GHashTable.
* Compares two strings for byte-by-byte equality and returns %TRUE
* if they are equal. It can be passed to g_hash_table_new() as the
* @key_equal_func parameter, when using strings as keys in a #GHashTable.
*
* Returns: %TRUE if the two keys match.
*/