From 94bb0dc6edf986547f100edcdd69904c81a25cfb Mon Sep 17 00:00:00 2001
From: Ruth Anderson <rea@cs.washington.edu>
Date: Mon, 21 Jan 2019 21:24:12 -0800
Subject: [PATCH] Update AVLTree.java

---
 src/datastructures/dictionaries/AVLTree.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/datastructures/dictionaries/AVLTree.java b/src/datastructures/dictionaries/AVLTree.java
index 42d408e..02f5310 100644
--- a/src/datastructures/dictionaries/AVLTree.java
+++ b/src/datastructures/dictionaries/AVLTree.java
@@ -6,7 +6,7 @@ import cse332.datastructures.trees.BinarySearchTree;
  * TODO: Replace this comment with your own as appropriate.
  *
  * AVLTree must be a subclass of BinarySearchTree<E> and must use
- * inheritance and callst o superclass methods to avoid unnecessary
+ * inheritance and calls to superclass methods to avoid unnecessary
  * duplication or copying of functionality.
  *
  * 1. Create a subclass of BSTNode, perhaps named AVLNode.
-- 
GitLab