aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter4_standard_library/lesson04_option_module/en.html
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/lesson04_option_module/en.html
parent421cbe75fa1bfbd4bc271bf233ede15836de760d (diff)
downloadtour-a1c22e954299de5c823ec47cd2f633355764e3b2.tar.gz
tour-a1c22e954299de5c823ec47cd2f633355764e3b2.zip
Add hrefs to code keywords
Diffstat (limited to 'src/content/chapter4_standard_library/lesson04_option_module/en.html')
-rw-r--r--src/content/chapter4_standard_library/lesson04_option_module/en.html13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/content/chapter4_standard_library/lesson04_option_module/en.html b/src/content/chapter4_standard_library/lesson04_option_module/en.html
index 0c66b25..699b5bd 100644
--- a/src/content/chapter4_standard_library/lesson04_option_module/en.html
+++ b/src/content/chapter4_standard_library/lesson04_option_module/en.html
@@ -1,10 +1,13 @@
<p>
Values in Gleam are not nullable, so the
- <a href="https://hexdocs.pm/gleam_stdlib/gleam/option.html"
- ><code>gleam/option</code></a
- >
- standard library module defines Gleam's <code>Option</code> type, which can be
- used to represent a value that is either present or absent.
+ <a href="https://hexdocs.pm/gleam_stdlib/gleam/option.html" target="_blank">
+ <code>gleam/option</code>
+ </a>
+ standard library module defines Gleam's
+ <a href="https://hexdocs.pm/gleam_stdlib/gleam/option.html#Option" target="_blank">
+ <code>Option</code>
+ </a>
+ type, which can be used to represent a value that is either present or absent.
</p>
<p>