diff --git a/ChangeLog b/ChangeLog index e25cfab98..be683939d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-06-14 Matthias Clasen + + * glib/gmain.c (g_timeout_add_seconds): Fix doc typos. (#447534, + Vincent Untz) + 2007-06-13 Behdad Esfahbod * glib/pltcheck.sh: Whitelist g_atomic_{int,pointer}_[gs]et() as diff --git a/glib/gmain.c b/glib/gmain.c index a273cd3e3..bb0b305a3 100644 --- a/glib/gmain.c +++ b/glib/gmain.c @@ -3671,8 +3671,8 @@ g_timeout_add (guint32 interval, * * The grouping of timers to fire at the same time results in a more power * and CPU efficient behavior so if your timer is in multiples of seconds - * and you don't require the first timer exactly 1 second from now, the - * use of g_timeout_add_second() is prefered over g_timeout_add(). + * and you don't require the first timer exactly one second from now, the + * use of g_timeout_add_seconds() is preferred over g_timeout_add(). * * Return value: the ID (greater than 0) of the event source. *