diff -r 7c1129fa8fac -r 10d4a5ed5d67 libpurple/core.h --- a/libpurple/core.h Fri Jul 07 11:50:28 2017 +0300 +++ b/libpurple/core.h Sun Oct 08 20:44:26 2017 +0300 @@ -109,13 +109,13 @@ * purple_core_quit_cb: * * Calls purple_core_quit(). This can be used as the function - * passed to purple_timeout_add() when you want to shutdown Purple + * passed to g_timeout_add() when you want to shutdown Purple * in a specified amount of time. When shutting down Purple * from a plugin, you must use this instead of purple_core_quit(); * for an immediate exit, use a timeout value of 0: * * - * purple_timeout_add(0, purple_core_quitcb, NULL) + * g_timeout_add(0, purple_core_quitcb, NULL) * * * This is ensures that code from your plugin is not being