Fix a little comment error in the _GTreeNode struct

https://bugzilla.gnome.org/show_bug.cgi?id=648516
This commit is contained in:
Geek87 2011-07-25 13:06:02 +02:00 committed by Matthias Clasen
parent 3aa0fc43a6
commit 27e70806c1

View File

@ -95,7 +95,7 @@ struct _GTreeNode
gpointer value; /* value stored at this node */
GTreeNode *left; /* left subtree */
GTreeNode *right; /* right subtree */
gint8 balance; /* height (left) - height (right) */
gint8 balance; /* height (right) - height (left) */
guint8 left_child;
guint8 right_child;
};