diff --git a/data_structures/avltree.cpp b/data_structures/avltree.cpp index 83a1d4c0d..8107eb7a1 100644 --- a/data_structures/avltree.cpp +++ b/data_structures/avltree.cpp @@ -158,7 +158,7 @@ void deleteAllNodes(const node *const root) { /** * @brief prints given tree in the LevelOrder - * @param root of the tree + * @param[in] root of the tree */ void levelOrder(node *root) { std::queue q;