aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter4_standard_library/lesson03_dict_module
diff options
context:
space:
mode:
authorDimitrii Dulgher <d1alogw0w@gmail.com>2024-04-13 00:04:06 +0300
committerLouis Pilfold <louis@lpil.uk>2024-04-15 13:08:02 +0100
commita1c22e954299de5c823ec47cd2f633355764e3b2 (patch)
tree6db2d8e2d349d3078bb30190fae2271797cbc18a /src/content/chapter4_standard_library/lesson03_dict_module
parent421cbe75fa1bfbd4bc271bf233ede15836de760d (diff)
downloadtour-a1c22e954299de5c823ec47cd2f633355764e3b2.tar.gz
tour-a1c22e954299de5c823ec47cd2f633355764e3b2.zip
Add hrefs to code keywords
Diffstat (limited to 'src/content/chapter4_standard_library/lesson03_dict_module')
-rw-r--r--src/content/chapter4_standard_library/lesson03_dict_module/en.html24
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>