From 40ddebb8b5c63c8199e9a3560b636cd29ba5b755 Mon Sep 17 00:00:00 2001 From: colinleach Date: Fri, 11 Oct 2024 19:14:36 -0500 Subject: [PATCH] Update about.md --- concepts.wip/pairs-and-dicts/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts.wip/pairs-and-dicts/about.md b/concepts.wip/pairs-and-dicts/about.md index d4c949e8..2598e6e7 100644 --- a/concepts.wip/pairs-and-dicts/about.md +++ b/concepts.wip/pairs-and-dicts/about.md @@ -48,7 +48,7 @@ julia> length(pv) 3 ``` -A [`Dict`][dict] is superficially similar, but storage is now implemented in a way that allows fast retrieval by key, even when the number of entries grows large. +A [`Dict`][dict] is superficially similar, but storage is now implemented in a way that allows fast retrieval by key, known as a "hash table", even when the number of entries grows large. ```julia-repl julia> pd = Dict(pv)