From ff2acc546409a8616b727b3ac2370915d5e34e6d Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 14 Jul 2021 19:53:56 -0500 Subject: [PATCH] fix: Apply suggestions from code review --- 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 8be1e385f..0397a2382 100644 --- a/operations_on_datastructures/inorder_successor_of_bst.cpp +++ b/operations_on_datastructures/inorder_successor_of_bst.cpp @@ -1,7 +1,7 @@ /** * @file * @brief An implementation for finding the [Inorder successor of a binary - * search tree](https://www.youtube.com/watch?v=5cPbNCrdotA&t=904s) Inorder + * search tree](https://www.youtube.com/watch?v=5cPbNCrdotA) Inorder * successor of a node is the next node in Inorder traversal of the Binary Tree. * Inorder Successor is NULL for the last node in Inorder traversal. * @details