mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-12-19 07:00:35 +08:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user