Fix up g_tree_foreach docs
authorMatthias Clasen <mclasen@redhat.com>
Sun, 23 Sep 2012 05:58:44 +0000 (01:58 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 23 Sep 2012 06:00:03 +0000 (02:00 -0400)
glib/gtree.c

index d67629f..a559a61 100644 (file)
@@ -888,10 +888,10 @@ g_tree_lookup_extended (GTree         *tree,
 /**
  * g_tree_foreach:
  * @tree: a #GTree.
- * @func: the function to call for each node visited. If this function
- *   returns %TRUE, the traversal is stopped.
+ * @func: the function to call for each node visited.
+ *     If this function returns %TRUE, the traversal is stopped.
  * @user_data: user data to pass to the function.
- * 
+ *
  * Calls the given function for each of the key/value pairs in the #GTree.
  * The function is passed the key and value of each pair, and the given
  * @data parameter. The tree is traversed in sorted order.