Fix up docs

svn path=/trunk/; revision=6131
This commit is contained in:
Matthias Clasen 2007-12-15 04:13:15 +00:00
parent d741d3e7a3
commit 1f7e7f84f4

View File

@ -368,16 +368,16 @@ g_hash_table_new_full (GHashFunc hash_func,
* Initializes a key/value pair iterator and associates it with
* @hash_table. Modifying the hash table after calling this function
* invalidates the returned iterator.
*
* <informalexample><programlisting>
* |[
* GHashTableIter iter;
* gpointer key, value;
*
* g_hash_table_iter_init(&iter, hash_table);
* while (g_hash_table_iter_next(&iter, &key, &value)) {
* /&ast; do something with key and value &ast;/
* }
* </programlisting></informalexample>
* g_hash_table_iter_init (&iter, hash_table);
* while (g_hash_table_iter_next (&iter, &key, &value))
* {
* /&ast; do something with key and value &ast;/
* }
* ]|
*
* Since: 2.16
**/