diff --git a/src/datastructures/dictionaries/MoveToFrontList.java b/src/datastructures/dictionaries/MoveToFrontList.java
index 7bc0804e0a541d9ae2eb3cb6c81481e37a163eb0..59ea9b6f23cbb2dc08b436a976867d536ffcb528 100644
--- a/src/datastructures/dictionaries/MoveToFrontList.java
+++ b/src/datastructures/dictionaries/MoveToFrontList.java
@@ -9,7 +9,7 @@ import cse332.interfaces.misc.DeletelessDictionary;
 /**
  * TODO: Replace this comment with your own as appropriate.
  * 1. The list is typically not sorted.
- * 2. Add new items to the front oft he list.
+ * 2. Add new items to the front of the list.
  * 3. Whenever find is called on an item, move it to the front of the 
  *    list. This means you remove the node from its current position 
  *    and make it the first node in the list.