From 35c35dd2509a3d621a00e6f29c61e13af6b8881a Mon Sep 17 00:00:00 2001 From: Siyu Wang <siyukw@cs.washington.edu> Date: Fri, 11 Jan 2019 11:04:54 -0800 Subject: [PATCH] Update MoveToFrontList.java --- src/datastructures/dictionaries/MoveToFrontList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datastructures/dictionaries/MoveToFrontList.java b/src/datastructures/dictionaries/MoveToFrontList.java index 7bc0804..59ea9b6 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. -- GitLab