From 11cc2e2aeb01a53b28e944949ec48e2fa2791f1c Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 2 Sep 2008 16:48:40 +0000 Subject: [PATCH] Fix up docs svn path=/trunk/; revision=7424 --- ChangeLog | 6 ++++++ glib/gutils.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 05081632b..f8950ad64 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 c0ec3b3b8..df9c65836 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