Skip to content

Commit 08ca073

Browse files
authored
Fix typo. Pari to Pair.
1 parent 8628508 commit 08ca073

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

data/part-12/2-arraylist-and-hashtable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ public void add(K key, V value) {
843843
values[hashValue] = new List<>();
844844
}
845845

846-
List<Pari<K, V>> valuesAtIndex = values[hashValue];
846+
List<Pair<K, V>> valuesAtIndex = values[hashValue];
847847

848848
int index = -1;
849849
for (int i = 0; i < valuesAtIndex.size(); i++) {

0 commit comments

Comments
 (0)