From 649154a68fda4c0b737bed5ab3aa8bb9f98734da Mon Sep 17 00:00:00 2001 From: "piotr.idzik" Date: Tue, 31 Jan 2023 20:37:15 +0100 Subject: [PATCH] style: use proper spelling --- data_structures/avltree.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data_structures/avltree.cpp b/data_structures/avltree.cpp index ab55f3ae9..2cefc7c88 100644 --- a/data_structures/avltree.cpp +++ b/data_structures/avltree.cpp @@ -84,7 +84,7 @@ node *minValue(node *root) { } /** - * @bried inserts a new element into AVL tree + * @brief inserts a new element into AVL tree * @param root of the tree * @param[in] item the element to be insterted into the tree * @return root of the updated tree @@ -114,7 +114,7 @@ node *insert(node *root, int item) { } /** - * @brief removed a given element from AVL tree + * @brief removes a given element from AVL tree * @param root of the tree * @param[in] key the element to be deleted from the tree * @return root of the updated tree