Skip to content

Commit 937f04f

Browse files
Update Tree-Traversal.md
1 parent a6c0c7c commit 937f04f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/ds-algorithms/Tree-Traversal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def printInorder(root):
125125

126126
In this traversal method, the root node is visited first, then the left subtree and finally the right subtree.
127127

128-
![preorder](images/Preorder%20traversal.png))
128+
![preorder](images/preorder-traversal.png))
129129

130130
**The order:** Root -> Left -> Right
131131

0 commit comments

Comments
 (0)