1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-07-03 01:23:04 +02:00

glib/gvariant.c: Fix variable name in example code

This commit is contained in:
Shaun McCance 2011-04-28 12:41:41 -04:00
parent a1fbe7ae84
commit e585059514

@ -2693,7 +2693,7 @@ g_variant_iter_free (GVariantIter *iter)
* GVariantIter iter;
* GVariant *child;
*
* g_variant_iter_init (&iter, dictionary);
* g_variant_iter_init (&iter, container);
* while ((child = g_variant_iter_next_value (&iter)))
* {
* g_print ("type '%s'\n", g_variant_get_type_string (child));