Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0b31aba

Browse files
author
José Valim
committed
Merge pull request elixir-lang#241 from parroty/docfix
Fix link to www.erlang.org in the Maps section
2 parents 0380cc9 + fd71c3c commit 0b31aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting_started/7.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ In future chapters, we will also learn about structs, which provide compile-time
156156

157157
Manipulating maps is done via [the `Map` module](/docs/stable/Map.html), it provides a very similar API to the `Keyword` module. This is because both modules implement the `Dict` behaviour.
158158

159-
> Note: Maps were recently introduced into the Erlang VM with [EEP 43](www.erlang.org/eeps/eep-0043.html). Erlang 17 provides a partial implementation of the EEP, where only "small maps" are supported. This means maps have good performance characteristics only when storing at maximum a couple of dozens keys. To fill in this gap, Elixir also provides [the `HashDict` module](/docs/stable/HashDict.html) which uses a hashing algorithm to provide a dictionary that supports hundreds of thousands keys with good performance.
159+
> Note: Maps were recently introduced into the Erlang VM with [EEP 43](http://www.erlang.org/eeps/eep-0043.html). Erlang 17 provides a partial implementation of the EEP, where only "small maps" are supported. This means maps have good performance characteristics only when storing at maximum a couple of dozens keys. To fill in this gap, Elixir also provides [the `HashDict` module](/docs/stable/HashDict.html) which uses a hashing algorithm to provide a dictionary that supports hundreds of thousands keys with good performance.
160160
161161
## 7.3 Dicts
162162

0 commit comments

Comments
 (0)