From a27ffa2d6451cc21d37d42181be8db7fca64e1f6 Mon Sep 17 00:00:00 2001
From: Lars Kappert
All gleam code is in some module or other, whose name comes from the
- name of the file it is in. For example,
+ name of the file it's in. For example,
gleam/io
diff --git a/src/content/chapter1_functions/lesson07_pipelines/en.html b/src/content/chapter1_functions/lesson07_pipelines/en.html
index 291f36e..783ade9 100644
--- a/src/content/chapter1_functions/lesson07_pipelines/en.html
+++ b/src/content/chapter1_functions/lesson07_pipelines/en.html
@@ -1,5 +1,5 @@
- It is common to want to call a series of functions, passing the result of one + It's common to want to call a series of functions, passing the result of one to the next. With the regular function call syntax this can be a little difficult to read as you have to read the code from the inside out.
diff --git a/src/content/chapter4_standard_library/lesson01_list_module/en.html b/src/content/chapter4_standard_library/lesson01_list_module/en.html index da020a7..9c6b953 100644 --- a/src/content/chapter4_standard_library/lesson01_list_module/en.html +++ b/src/content/chapter4_standard_library/lesson01_list_module/en.html @@ -37,6 +37,6 @@True
.
- It is worth getting familiar with all the functions in this module when - writing Gleam code, you'll be using them a lot! + It's worth getting familiar with all the functions in this module when writing + Gleam code, you'll be using them a lot!
diff --git a/src/content/chapter5_advanced_features/lesson08_external_gleam_fallbacks/en.html b/src/content/chapter5_advanced_features/lesson08_external_gleam_fallbacks/en.html index 2497fa1..243c7ea 100644 --- a/src/content/chapter5_advanced_features/lesson08_external_gleam_fallbacks/en.html +++ b/src/content/chapter5_advanced_features/lesson08_external_gleam_fallbacks/en.html @@ -1,5 +1,5 @@- It is possible for a function to have both a Gleam implementation and an + It's possible for a function to have both a Gleam implementation and an external implementation. If there exists an external implementation for the currently compiled-for target then it will be used, otherwise the Gleam implementation is used. diff --git a/src/tour.gleam b/src/tour.gleam index 0453543..0bfd9cf 100644 --- a/src/tour.gleam +++ b/src/tour.gleam @@ -71,7 +71,7 @@ const home_html = "
If at any point you get stuck or have a question do not hesitate to ask in the Gleam Discord server. We're here - to help, and if you find something confusing then it is likely others will too, + to help, and if you find something confusing then it's likely others will too, and we want to know about it so we can improve the tour.
-- cgit v1.2.3