From b92861b5a0fd4be7b5b5e494c424b0e8d48a6b7f Mon Sep 17 00:00:00 2001 From: David Schleef Date: Tue, 24 May 2011 14:35:20 -0700 Subject: [PATCH] main: Use public function in documentation https://bugzilla.gnome.org/show_bug.cgi?id=651009 --- glib/gmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gmain.c b/glib/gmain.c index 25b931043..efecbf587 100644 --- a/glib/gmain.c +++ b/glib/gmain.c @@ -2170,7 +2170,7 @@ get_dispatch (void) * That is, when called from the toplevel, it gives 0. When * called from within a callback from g_main_context_iteration() * (or g_main_loop_run(), etc.) it returns 1. When called from within - * a callback to a recursive call to g_main_context_iterate(), + * a callback to a recursive call to g_main_context_iteration(), * it returns 2. And so forth. * * This function is useful in a situation like the following: