aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter4_standard_library/lesson02_result_module
diff options
context:
space:
mode:
authorMatias Kinnunen <github@mtsknn.fi>2024-06-06 13:11:12 +0300
committerLouis Pilfold <louis@lpil.uk>2024-06-10 16:24:21 +0100
commit3f0eacdc4a7bccec31a296ab893024af39636da3 (patch)
treea3cae7902cd019a5c2eb2788f1640a4fe23ecc2b /src/content/chapter4_standard_library/lesson02_result_module
parent2f5ef9ea0e96b4d621152c0bc8efa8c994624c66 (diff)
downloadtour-3f0eacdc4a7bccec31a296ab893024af39636da3.tar.gz
tour-3f0eacdc4a7bccec31a296ab893024af39636da3.zip
Hyphenate compound words
Diffstat (limited to 'src/content/chapter4_standard_library/lesson02_result_module')
-rw-r--r--src/content/chapter4_standard_library/lesson02_result_module/en.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/chapter4_standard_library/lesson02_result_module/en.html b/src/content/chapter4_standard_library/lesson02_result_module/en.html
index 0760145..c39a0b1 100644
--- a/src/content/chapter4_standard_library/lesson02_result_module/en.html
+++ b/src/content/chapter4_standard_library/lesson02_result_module/en.html
@@ -20,7 +20,7 @@
<a href="https://hexdocs.pm/gleam_stdlib/gleam/result.html#try" target="_blank">
<code>try</code>
</a>
- runs a result returning function on the value held within an Ok of a result.
+ runs a result-returning function on the value held within an Ok of a result.
If the result is an error then the function is not called. This is useful for
chaining together multiple function calls that can fail, one after the other,
stopping at the first error.
@@ -36,5 +36,5 @@
<p>
Result functions are often used with pipelines to chain together multiple
- calls to result returning functions.
+ calls to result-returning functions.
</p>