aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOli Clive-Griffin <70186488+oli-clive-griffin@users.noreply.github.com>2024-05-31 10:21:44 -0400
committerLouis Pilfold <louis@lpil.uk>2024-05-31 16:15:43 +0100
commit1107ff60270daa06d17cd3809c0a5268d870f806 (patch)
treecfc0341738774196adc24d1a9c65623ac268aca3
parentb2962d978ac2b74ce9e7fa8af0f5432936271eb7 (diff)
downloadtour-1107ff60270daa06d17cd3809c0a5268d870f806.tar.gz
tour-1107ff60270daa06d17cd3809c0a5268d870f806.zip
fix potential typo
-rw-r--r--src/content/chapter4_standard_library/lesson04_option_module/en.html4
1 files changed, 2 insertions, 2 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 699b5bd..8ad92bb 100644
--- a/src/content/chapter4_standard_library/lesson04_option_module/en.html
+++ b/src/content/chapter4_standard_library/lesson04_option_module/en.html
@@ -12,8 +12,8 @@
<p>
The option type is very similar to the result type, but it does not have an
- error value. Some languages have functions return an option when there is no
- extra error detail to give, but Gleam always uses result. This makes all
+ error value. Some languages have functions that return an option when there is
+ no extra error detail to give, but Gleam always uses result. This makes all
fallible functions consistent and removes any boilerplate that would be
required when mixing functions that use each type.
</p>