Rename (private) GSource.id and id parameter to
[platform/upstream/glib.git] / docs / reference / glib / tmpl / trees-binary.sgml
index 7e9a558..36af29e 100644 (file)
@@ -178,10 +178,10 @@ Specifies the type of traveral performed by g_tree_traverse(),
 g_node_traverse() and g_node_find().
 </para>
 
-@G_PRE_ORDER: visits a node, then its children.
 @G_IN_ORDER: vists a node's left child first, then the node itself, then its
   right child. This is the one to use if you want the output sorted according
   to the compare function.
+@G_PRE_ORDER: visits a node, then its children.
 @G_POST_ORDER: visits the node's children, then the node itself.
 @G_LEVEL_ORDER: is not implemented for
   <link linkend="glib-Balanced-Binary-Trees">Balanced Binary Trees</link>.