aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
authorAnthony Bullard <1380687+gamebox@users.noreply.github.com>2024-03-05 09:03:10 -0600
committerLouis Pilfold <louis@lpil.uk>2024-03-05 15:35:29 +0000
commit20a439acace144e698ee300bf4f3bd166ff8d7dc (patch)
tree75c6858fb7fe4a39f922707c5d81315f1731435c /src/content
parent562ad626dd4f0dd47afe1edca38e44adac9ca759 (diff)
downloadtour-20a439acace144e698ee300bf4f3bd166ff8d7dc.tar.gz
tour-20a439acace144e698ee300bf4f3bd166ff8d7dc.zip
Clarify list recursion text
The first sentence in this section is hard to parse. I think this rephrasing is more clear.
Diffstat (limited to 'src/content')
-rw-r--r--src/content/chapter2_flow_control/lesson07_list_recursion/en.html4
1 files changed, 2 insertions, 2 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 94e8152..d2194e3 100644
--- a/src/content/chapter2_flow_control/lesson07_list_recursion/en.html
+++ b/src/content/chapter2_flow_control/lesson07_list_recursion/en.html
@@ -1,9 +1,9 @@
<p>
- Most commonly functions in the
+ 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
>
- module are used to iterate across a list, but at times you may prefer to work
+ module to iterate across a list, at times you may prefer to work
with the list directly.
</p>
<p>