mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-11 03:34:05 +02:00
Fix up docs
svn path=/trunk/; revision=6131
This commit is contained in:
10
glib/ghash.c
10
glib/ghash.c
@@ -368,16 +368,16 @@ g_hash_table_new_full (GHashFunc hash_func,
|
|||||||
* Initializes a key/value pair iterator and associates it with
|
* Initializes a key/value pair iterator and associates it with
|
||||||
* @hash_table. Modifying the hash table after calling this function
|
* @hash_table. Modifying the hash table after calling this function
|
||||||
* invalidates the returned iterator.
|
* invalidates the returned iterator.
|
||||||
*
|
* |[
|
||||||
* <informalexample><programlisting>
|
|
||||||
* GHashTableIter iter;
|
* GHashTableIter iter;
|
||||||
* gpointer key, value;
|
* gpointer key, value;
|
||||||
*
|
*
|
||||||
* g_hash_table_iter_init(&iter, hash_table);
|
* g_hash_table_iter_init (&iter, hash_table);
|
||||||
* while (g_hash_table_iter_next(&iter, &key, &value)) {
|
* while (g_hash_table_iter_next (&iter, &key, &value))
|
||||||
|
* {
|
||||||
* /* do something with key and value */
|
* /* do something with key and value */
|
||||||
* }
|
* }
|
||||||
* </programlisting></informalexample>
|
* ]|
|
||||||
*
|
*
|
||||||
* Since: 2.16
|
* Since: 2.16
|
||||||
**/
|
**/
|
||||||
|
Reference in New Issue
Block a user