summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java')
-rw-r--r--src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java b/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
index 35b116b..65c013b 100644
--- a/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
+++ b/src/main/java/bjc/funcdata/bst/TreeLinearizationMethod.java
@@ -7,18 +7,18 @@ package bjc.funcdata.bst;
*/
public enum TreeLinearizationMethod {
/**
- * Visit the left side of this tree part, the tree part itself, and then
- * the right part.
+ * Visit the left side of this tree part, the tree part itself, and then the
+ * right part.
*/
INORDER,
/**
- * Visit the left side of this tree part, the right side, and then the
- * tree part itself.
+ * Visit the left side of this tree part, the right side, and then the tree part
+ * itself.
*/
POSTORDER,
/**
- * Visit the tree part itself, then the left side of tthis tree part and
- * then the right part.
+ * Visit the tree part itself, then the left side of tthis tree part and then
+ * the right part.
*/
PREORDER
}