Skip to content

Commit

Permalink
Fixed a typo in Task
Browse files Browse the repository at this point in the history
  • Loading branch information
Danieth committed Oct 6, 2014
1 parent 5867d06 commit 70fad41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion me/danieth/bstvisualized/Task.java
Expand Up @@ -258,7 +258,7 @@ public int execute(BstObjPanel bst) {
case MIN:
if (node != null && node.getLkid() == null) { // Found
bst.addToBuffer("(Found Min) Because " + node
.getVal() + " has no right child, it is the maximum value of this tree");
.getVal() + " has no left child, it is the minimum value of this tree");
bst.addTaskArgument(node);
} else if (node != null) {
bst.addToBuffer("(Searching For Min) Because " + node
Expand Down

0 comments on commit 70fad41

Please sign in to comment.