Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DataStructures/AVLTree/AVLTree.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ private AvlTreeNode<TKey> Add(AvlTreeNode<TKey> 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();

Expand Down