From 8283226cf4cf15480167a7d71d432a87bff0d07b Mon Sep 17 00:00:00 2001 From: TricolorHen061 <55330531+TricolorHen061@users.noreply.github.com> Date: Sun, 7 Jan 2024 23:22:24 -0600 Subject: [PATCH] Fix typo Last time I checked, in Gleam, there was no such thing as an `Oction` type ;) --- .../chapter4_standard_library/lesson04_option_module/text.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 881ea94..64c1d59 100644 --- a/src/content/chapter4_standard_library/lesson04_option_module/text.html +++ b/src/content/chapter4_standard_library/lesson04_option_module/text.html @@ -3,7 +3,7 @@ gleam/option - standard library module defines Gleam's Oction type, which can be + standard library module defines Gleam's Option type, which can be used to represent a value that is either present or absent.