@@ -425,9 +425,9 @@ new_fluid_hashtable_full(fluid_hash_func_t hash_func,
425425 return hashtable ;
426426}
427427
428- /**
428+ /*
429429 * fluid_hashtable_iter_init:
430- * iter: an uninitialized # fluid_hashtable_iter_t.
430+ * iter: an uninitialized fluid_hashtable_iter_t.
431431 * hashtable: a #fluid_hashtable_t.
432432 *
433433 * Initializes a key/value pair iterator and associates it with
@@ -445,7 +445,7 @@ new_fluid_hashtable_full(fluid_hash_func_t hash_func,
445445 * ]|
446446 *
447447 * Since: 2.16
448- ** /
448+ */
449449void
450450fluid_hashtable_iter_init (fluid_hashtable_iter_t * iter ,
451451 fluid_hashtable_t * hashtable )
@@ -464,7 +464,7 @@ fluid_hashtable_iter_init(fluid_hashtable_iter_t *iter,
464464
465465/**
466466 * fluid_hashtable_iter_next:
467- * iter: an initialized # fluid_hashtable_iter_t.
467+ * iter: an initialized fluid_hashtable_iter_t.
468468 * key: a location to store the key, or NULL.
469469 * value: a location to store the value, or NULL.
470470 *
@@ -530,7 +530,7 @@ fluid_hashtable_iter_next(fluid_hashtable_iter_t *iter, void **key,
530530
531531/**
532532 * fluid_hashtable_iter_get_hash_table:
533- * iter: an initialized # fluid_hashtable_iter_t.
533+ * iter: an initialized fluid_hashtable_iter_t.
534534 *
535535 * Returns the #fluid_hashtable_t associated with iter.
536536 *
@@ -611,7 +611,7 @@ iter_remove_or_steal(RealIter *ri, int notify)
611611
612612/**
613613 * fluid_hashtable_iter_remove():
614- * iter: an initialized # fluid_hashtable_iter_t.
614+ * iter: an initialized fluid_hashtable_iter_t.
615615 *
616616 * Removes the key/value pair currently pointed to by the iterator
617617 * from its associated #fluid_hashtable_t. Can only be called after
@@ -633,7 +633,7 @@ fluid_hashtable_iter_remove(fluid_hashtable_iter_t *iter)
633633
634634/**
635635 * fluid_hashtable_iter_steal():
636- * iter: an initialized # fluid_hashtable_iter_t.
636+ * iter: an initialized fluid_hashtable_iter_t.
637637 *
638638 * Removes the key/value pair currently pointed to by the iterator
639639 * from its associated #fluid_hashtable_t, without calling the key and value
@@ -1068,7 +1068,7 @@ fluid_hashtable_foreach_remove_or_steal(fluid_hashtable_t *hashtable,
10681068 * the #fluid_hashtable_t, they are used to free the memory allocated for the removed
10691069 * keys and values.
10701070 *
1071- * See # fluid_hashtable_iter_t for an alternative way to loop over the
1071+ * See fluid_hashtable_iter_t for an alternative way to loop over the
10721072 * key/value pairs in the hash table.
10731073 *
10741074 * Return value: the number of key/value pairs removed.
@@ -1094,7 +1094,7 @@ fluid_hashtable_foreach_remove(fluid_hashtable_t *hashtable,
10941094 * If the function returns TRUE, then the key/value pair is removed from the
10951095 * #fluid_hashtable_t, but no key or value destroy functions are called.
10961096 *
1097- * See # fluid_hashtable_iter_t for an alternative way to loop over the
1097+ * See fluid_hashtable_iter_t for an alternative way to loop over the
10981098 * key/value pairs in the hash table.
10991099 *
11001100 * Return value: the number of key/value pairs removed.
0 commit comments