Skip to content

Commit ca39307

Browse files
committed
Merge branch 'master' of github.com:PegasusWang/python_data_structures_and_algorithms
2 parents 1e988a7 + f673f3f commit ca39307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/14_树与二叉树/tree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class BinTree(object):
121121
root = node
122122
node.left = node_dict.get(node_data['left'])
123123
node.right = node_dict.get(node_data['right'])
124-
return cls(root)
124+
return cls(root)
125125
btree = BinTree.build_from(node_list)
126126
```
127127

0 commit comments

Comments
 (0)