1
0
mirror of synced 2024-12-14 23:26:04 +03:00

joesimms: fixed link to tree traversal information in docs

This commit is contained in:
joesimms 2007-01-15 13:45:10 +00:00
parent a32e5db407
commit 549904224a

View File

@ -1,3 +1,3 @@
<p>You can traverse a Tree in different ways, please see here for more information http://en.wikipedia.org/wiki/Tree_traversal.</p> <p>You can traverse a Tree in different ways, please see here for more information <a href="http://en.wikipedia.org/wiki/Tree_traversal" >http://en.wikipedia.org/wiki/Tree_traversal</a>.</p>
<p>The most common way of traversing a tree is Pre Order Traversal as explained in the link above, this is also what is known as walking the tree, this is the default approach when traversing a tree in Doctrine, however Doctrine does plan to provide support for Post and Level Order Traversal (not currently implemented)</p> <p>The most common way of traversing a tree is Pre Order Traversal as explained in the link above, this is also what is known as walking the tree, this is the default approach when traversing a tree in Doctrine, however Doctrine does plan to provide support for Post and Level Order Traversal (not currently implemented)</p>