aboutsummaryrefslogtreecommitdiff
path: root/src/content
diff options
context:
space:
mode:
Diffstat (limited to 'src/content')
-rw-r--r--src/content/chapter0_basics/lesson02_modules/en.html2
-rw-r--r--src/content/chapter1_functions/lesson07_pipelines/en.html2
-rw-r--r--src/content/chapter4_standard_library/lesson01_list_module/en.html4
-rw-r--r--src/content/chapter5_advanced_features/lesson08_external_gleam_fallbacks/en.html2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/content/chapter0_basics/lesson02_modules/en.html b/src/content/chapter0_basics/lesson02_modules/en.html
index 50862ec..7a2d0ca 100644
--- a/src/content/chapter0_basics/lesson02_modules/en.html
+++ b/src/content/chapter0_basics/lesson02_modules/en.html
@@ -12,7 +12,7 @@
</p>
<p>
All gleam code is in <i>some</i> 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,
<a href="https://hexdocs.pm/gleam_stdlib/gleam/io.html" target="_blank">
<code>gleam/io</code>
</a>
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 @@
<p>
- 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.
</p>
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 @@
<code>True</code>.
</p>
<p>
- 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!
</p>
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 @@
<p>
- 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.