chore: fix typos in src/main/java/com/thealgorithms/datastructures/trees/AVLSimple.java (#7029)

Fix typos in src/main/java/com/thealgorithms/datastructures/trees/AVLSimple.java
This commit is contained in:
Lê Nam Khánh
2025-11-05 18:12:14 +07:00
committed by GitHub
parent 0c277a1d9e
commit 8c8527c2c8

View File

@@ -1,7 +1,7 @@
package com.thealgorithms.datastructures.trees;
/*
* Avl is algo that balance itself while adding new alues to tree
* Avl is algo that balance itself while adding new values to tree
* by rotating branches of binary tree and make itself Binary seaarch tree
* there are four cases which has to tackle
* rotating - left right ,left left,right right,right left