diff options
Diffstat (limited to 'src/content/chapter4_standard_library')
-rw-r--r-- | src/content/chapter4_standard_library/lesson01_list_module/text.html | 2 | ||||
-rw-r--r-- | src/content/chapter4_standard_library/lesson04_option_module/text.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/content/chapter4_standard_library/lesson01_list_module/text.html b/src/content/chapter4_standard_library/lesson01_list_module/text.html index a0bfb5b..7451b10 100644 --- a/src/content/chapter4_standard_library/lesson01_list_module/text.html +++ b/src/content/chapter4_standard_library/lesson01_list_module/text.html @@ -5,7 +5,7 @@ > standard library module contains functions for working with lists. A Gleam program will likely make heavy use of this module, the various functions - serving as differnt types of loops over lists. + serving as different types of loops over lists. </p> <p> diff --git a/src/content/chapter4_standard_library/lesson04_option_module/text.html b/src/content/chapter4_standard_library/lesson04_option_module/text.html index 64c1d59..0c66b25 100644 --- a/src/content/chapter4_standard_library/lesson04_option_module/text.html +++ b/src/content/chapter4_standard_library/lesson04_option_module/text.html @@ -11,6 +11,6 @@ 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 - failible functions consistent and removes any boilerplate that would be + fallible functions consistent and removes any boilerplate that would be required when mixing functions that use each type. </p> |