diff --git a/operations_on_datastructures/reverse_binary_tree.cpp b/operations_on_datastructures/reverse_binary_tree.cpp index a0fc22a4c..658ac51ec 100644 --- a/operations_on_datastructures/reverse_binary_tree.cpp +++ b/operations_on_datastructures/reverse_binary_tree.cpp @@ -1,6 +1,6 @@ /** * @file - * @brief An implemention for [Reversing a Binary + * @brief Implementation for the [Reversing a Binary * Tree](https://www.geeksforgeeks.org/reverse-tree-path/) recursively. * @details A binary tree can be reversed by swapping the left and * right child of a node at each node, starting from the root, and