From: Matthias Clasen Date: Tue, 2 Sep 2008 16:48:40 +0000 (+0000) Subject: Fix up docs X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=11cc2e2aeb01a53b28e944949ec48e2fa2791f1c;p=dana%2Fcg-glib.git Fix up docs svn path=/trunk/; revision=7424 --- diff --git a/ChangeLog b/ChangeLog index 05081632..f8950ad6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-02 Matthias Clasen + + Bug 550104 – trivial documentation fix for g_get_home_dir + + * glib/gutils.c (g_get_home_dir): Fix up the docs. + 2008-09-02 Michael Natterer * glib/gchecksum.c (g_checksum_reset): add diff --git a/glib/gutils.c b/glib/gutils.c index c0ec3b3b..df9c6583 100644 --- a/glib/gutils.c +++ b/glib/gutils.c @@ -1811,13 +1811,13 @@ g_get_real_name (void) * * Since applications are in general not written * to deal with these situations it was considered better to make - * g_get_homedir() not pay attention to HOME and to + * g_get_home_dir() not pay attention to HOME and to * return the real home directory for the user. If applications * want to pay attention to HOME, they can do: * |[ * const char *homedir = g_getenv ("HOME"); * if (!homedir) - * homedir = g_get_homedir (); + * homedir = g_get_home_dir (); * ]| * * Returns: the current user's home directory