From 76255dd780efbc738214205044c1239907e99745 Mon Sep 17 00:00:00 2001 From: Alvin Philips Date: Tue, 19 Oct 2021 07:53:45 +0530 Subject: [PATCH] Update operations_on_datastructures/reverse_binary_tree.cpp Co-authored-by: David Leal --- operations_on_datastructures/reverse_binary_tree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations_on_datastructures/reverse_binary_tree.cpp b/operations_on_datastructures/reverse_binary_tree.cpp index 38e27fd5e..e91dac588 100644 --- a/operations_on_datastructures/reverse_binary_tree.cpp +++ b/operations_on_datastructures/reverse_binary_tree.cpp @@ -248,6 +248,6 @@ static void test() { * @returns 0 on exit */ int main() { - test(); ///< Run our Test cases + test(); // run self-test implementations return 0; }