diff options
Diffstat (limited to 'src/content/chapter4_standard_library/lesson03_dict_module/en.html')
-rw-r--r-- | src/content/chapter4_standard_library/lesson03_dict_module/en.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/content/chapter4_standard_library/lesson03_dict_module/en.html b/src/content/chapter4_standard_library/lesson03_dict_module/en.html index f7eb879..4037085 100644 --- a/src/content/chapter4_standard_library/lesson03_dict_module/en.html +++ b/src/content/chapter4_standard_library/lesson03_dict_module/en.html @@ -9,24 +9,24 @@ </p> <p> - <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#new" - ><code>new</code></a - > + <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#new" target="_blank"> + <code>new</code> + </a> and - <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#from_list" - ><code>from_list</code></a - > + <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#from_list" target="_blank"> + <code>from_list</code> + </a> can be used to create new dicts. </p> <p> - <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#insert" - ><code>insert</code></a - > + <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#insert" target="_blank"> + <code>insert</code> + </a> and - <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#delete" - ><code>delete</code></a - > + <a href="https://hexdocs.pm/gleam_stdlib/gleam/dict.html#delete" target="_blank"> + <code>delete</code> + </a> are used to add and remove items from a dict. </p> <p> |