From 121e85662b6b15e6e9a4b6f2ba7c44d8e5fdf873 Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Wed, 5 Nov 2025 18:44:11 +0700 Subject: [PATCH] Fix typos in DataStructures/AVLTree/AVLTree.cs --- DataStructures/AVLTree/AVLTree.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructures/AVLTree/AVLTree.cs b/DataStructures/AVLTree/AVLTree.cs index 3902f692..6af5866d 100644 --- a/DataStructures/AVLTree/AVLTree.cs +++ b/DataStructures/AVLTree/AVLTree.cs @@ -360,7 +360,7 @@ private AvlTreeNode Add(AvlTreeNode node, TKey key) throw new ArgumentException($"""Key "{key}" already exists in AVL tree."""); } - // Check all of the new node's ancestors for inbalance and perform + // Check all of the new node's ancestors for imbalance and perform // necessary rotations node.UpdateBalanceFactor();