aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter2_flow_control
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/chapter2_flow_control
parent421cbe75fa1bfbd4bc271bf233ede15836de760d (diff)
downloadtour-a1c22e954299de5c823ec47cd2f633355764e3b2.tar.gz
tour-a1c22e954299de5c823ec47cd2f633355764e3b2.zip
Add hrefs to code keywords
Diffstat (limited to 'src/content/chapter2_flow_control')
-rw-r--r--src/content/chapter2_flow_control/lesson07_list_recursion/en.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/content/chapter2_flow_control/lesson07_list_recursion/en.html b/src/content/chapter2_flow_control/lesson07_list_recursion/en.html
index d2194e3..9f158d8 100644
--- a/src/content/chapter2_flow_control/lesson07_list_recursion/en.html
+++ b/src/content/chapter2_flow_control/lesson07_list_recursion/en.html
@@ -1,8 +1,8 @@
<p>
- While it is more common to use functions in the
- <a href="https://hexdocs.pm/gleam_stdlib/gleam/list.html"
- ><code>gleam/list</code></a
- >
+ While it is more common to use functions in the
+ <a href="https://hexdocs.pm/gleam_stdlib/gleam/list.html" target="_blank">
+ <code>gleam/list</code>
+ </a>
module to iterate across a list, at times you may prefer to work
with the list directly.
</p>