From 2feaa411073aa8d3ca96afad92f8fc00b14ff71c Mon Sep 17 00:00:00 2001 From: Dima Kotobotov Date: Sat, 29 Jun 2019 20:07:32 +0300 Subject: [PATCH] :pencil2: Fixing typos. --- _overviews/collections-2.13/equality.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/collections-2.13/equality.md b/_overviews/collections-2.13/equality.md index 42137a43ca..68f5f4141c 100644 --- a/_overviews/collections-2.13/equality.md +++ b/_overviews/collections-2.13/equality.md @@ -31,4 +31,4 @@ It does not matter for the equality check whether a collection is mutable or imm java.util.NoSuchElementException: key not found: ArrayBuffer(2, 2, 3) -In this example, the selection in the last line will most likely fail because the hash-code of the array `xs` has changed in the second-to-last line. Therefore, the hash-code-based lookup will look at a different place than the one where `xs` was stored. +In this example, the selection in the last line will most likely fail because the hash-code of the array `buf` has changed in the second-to-last line. Therefore, the hash-code-based lookup will look at a different place than the one where `buf` was stored.