diff --git a/src/main/java/com/thealgorithms/datastructures/trees/BSTRecursiveGeneric.java b/src/main/java/com/thealgorithms/datastructures/trees/BSTRecursiveGeneric.java index 0245372fe012..2c94224ddeb4 100644 --- a/src/main/java/com/thealgorithms/datastructures/trees/BSTRecursiveGeneric.java +++ b/src/main/java/com/thealgorithms/datastructures/trees/BSTRecursiveGeneric.java @@ -30,7 +30,7 @@ public BSTRecursiveGeneric() { } /** - * Displays the tree is a structed format + * Displays the tree is a structured format */ public void prettyDisplay() { prettyDisplay(root, 0);