From eac40112cca7f3e92a41451c48e22de4a9de372f Mon Sep 17 00:00:00 2001 From: Nitin Sharma <32377892+foo290@users.noreply.github.com> Date: Mon, 12 Jul 2021 13:44:15 +0530 Subject: [PATCH] Update operations_on_datastructures/inorder_successor_of_bst.cpp Co-authored-by: David Leal --- operations_on_datastructures/inorder_successor_of_bst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations_on_datastructures/inorder_successor_of_bst.cpp b/operations_on_datastructures/inorder_successor_of_bst.cpp index 29013ceed..2a0362482 100644 --- a/operations_on_datastructures/inorder_successor_of_bst.cpp +++ b/operations_on_datastructures/inorder_successor_of_bst.cpp @@ -53,7 +53,7 @@ namespace operations_on_datastructures { namespace inorder_traversal_of_bst { /** - * @brief A Node structure representing a single node in bst. + * @brief A Node structure representing a single node in BST */ class Node { public: