aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter4_standard_library/lesson04_option_module/en.html
diff options
context:
space:
mode:
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>