Skip to content

Commit

Permalink
Update about.md
Browse files Browse the repository at this point in the history
  • Loading branch information
colinleach authored Oct 12, 2024
1 parent d8f9c2c commit 40ddebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concepts.wip/pairs-and-dicts/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 40ddebb

Please sign in to comment.