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

Fix typos in src/main/java/com/thealgorithms/datastructures/trees/BSTRecursiveGeneric.java
This commit is contained in:
Lê Nam Khánh
2025-11-05 18:05:13 +07:00
committed by GitHub
parent 65eeb5579e
commit d75a668870

View File

@@ -30,7 +30,7 @@ public class BSTRecursiveGeneric<T extends Comparable<T>> {
}
/**
* Displays the tree is a structed format
* Displays the tree is a structured format
*/
public void prettyDisplay() {
prettyDisplay(root, 0);