From db16ca7f3466fb5ae9eebb00a1686900996468a9 Mon Sep 17 00:00:00 2001
From: Winston Jodjana <winj@cs.washington.edu>
Date: Sat, 15 Apr 2023 14:30:46 -0700
Subject: [PATCH] Update CHT

---
 .../java/datastructures/dictionaries/ChainingHashTable.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/datastructures/dictionaries/ChainingHashTable.java b/src/main/java/datastructures/dictionaries/ChainingHashTable.java
index 1e82af3..f3ae0a1 100644
--- a/src/main/java/datastructures/dictionaries/ChainingHashTable.java
+++ b/src/main/java/datastructures/dictionaries/ChainingHashTable.java
@@ -13,11 +13,11 @@ import java.util.function.Supplier;
  *   restrict the size of the input domain (i.e., it must accept
  *   any key) or the number of inputs (i.e., it must grow as necessary).
  *
- * - Your HashTable should rehash as appropriate (use load factor as
+ * - ChainingHashTable should rehash as appropriate (use load factor as
  *   shown in class!).
  *
- * - HashTable must resize its capacity into prime numbers via given PRIME_SIZES list.
- *   Past this, it should continue to resize using some other mechanism.
+ * - ChainingHashTable must resize its capacity into prime numbers via given PRIME_SIZES list.
+ *   Past this, it should continue to resize using some other mechanism (primes not necessary).
  *
  * - When implementing your iterator, you should NOT copy every item to another
  *   dictionary/list and return that dictionary/list's iterator.
-- 
GitLab