From: Matthias Clasen Date: Thu, 15 Mar 2007 03:08:08 +0000 (+0000) Subject: Fix a small typo. (#417947, Bobby Jack) X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=b2eed3f16c9bdb999a9b89e8d9406038802ff793;p=dana%2Fcg-glib.git Fix a small typo. (#417947, Bobby Jack) 2007-03-14 Matthias Clasen * glib/gkeyfile.c (g_key_file_get_double): Fix a small typo. (#417947, Bobby Jack) svn path=/trunk/; revision=5404 --- diff --git a/ChangeLog b/ChangeLog index d43bae99..79f47964 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-03-14 Matthias Clasen + + * glib/gkeyfile.c (g_key_file_get_double): Fix a + small typo. (#417947, Bobby Jack) + 2007-03-08 Matthias Clasen * glib/gstrfuncs.c (g_strtoll): Return negative values. diff --git a/glib/gkeyfile.c b/glib/gkeyfile.c index 4ac63a66..94c19c61 100644 --- a/glib/gkeyfile.c +++ b/glib/gkeyfile.c @@ -2182,8 +2182,8 @@ g_key_file_set_integer_list (GKeyFile *key_file, * @key: a key * @error: return location for a #GError * - * Returns the value associated with @key under @group_name as an - * integer. If @group_name is %NULL, the start_group is used. + * Returns the value associated with @key under @group_name as a + * double. If @group_name is %NULL, the start_group is used. * * If @key cannot be found then the return value is undefined and * @error is set to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if