From 47cfd251c6890bc66a249a4f69e6847c6f3e6dfa Mon Sep 17 00:00:00 2001 From: "piotr.idzik" Date: Tue, 31 Jan 2023 20:54:40 +0100 Subject: [PATCH] docs: add missing [in] --- data_structures/avltree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;