From 0099cd2698a4465edf360e83f113b49b2030c828 Mon Sep 17 00:00:00 2001 From: Diwas Dahal <105503443+di-was@users.noreply.github.com> Date: Tue, 25 Jul 2023 07:33:42 +0545 Subject: [PATCH] Update basic_binary_tree.py --- data_structures/binary_tree/basic_binary_tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/binary_tree/basic_binary_tree.py b/data_structures/binary_tree/basic_binary_tree.py index faaf9400f..c7820b721 100644 --- a/data_structures/binary_tree/basic_binary_tree.py +++ b/data_structures/binary_tree/basic_binary_tree.py @@ -35,7 +35,7 @@ def display_using_in_order_traversal(root: Node | None, level: int = 0) -> None: >>> root = Node(1) >>> root.left = Node(0) >>> root.right = Node(2) - >>> display_tree(root) + >>> display_using_in_order_traversal(root) 2 1 0