diff options
author | Lars Kappert <lars@webpro.nl> | 2024-05-02 08:37:05 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-05-03 11:18:07 +0100 |
commit | a27ffa2d6451cc21d37d42181be8db7fca64e1f6 (patch) | |
tree | e2923e7c10b1afae4aad72ad76a48e854a3471bc | |
parent | 594e8aa28d146c755551a61c3f68ba7ad430329d (diff) | |
download | tour-a27ffa2d6451cc21d37d42181be8db7fca64e1f6.tar.gz tour-a27ffa2d6451cc21d37d42181be8db7fca64e1f6.zip |
Revert "it is"
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/content/chapter0_basics/lesson02_modules/en.html | 2 | ||||
-rw-r--r-- | src/content/chapter1_functions/lesson07_pipelines/en.html | 2 | ||||
-rw-r--r-- | src/content/chapter4_standard_library/lesson01_list_module/en.html | 4 | ||||
-rw-r--r-- | src/content/chapter5_advanced_features/lesson08_external_gleam_fallbacks/en.html | 2 | ||||
-rw-r--r-- | src/tour.gleam | 2 |
6 files changed, 7 insertions, 7 deletions
@@ -9,5 +9,5 @@ An interactive tour of the Gleam programming language. # Build the site gleam run -# It is now all the in `public/` directory +# It's now all the in `public/` directory ``` 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. 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 = " <p> If at any point you get stuck or have a question do not hesitate to ask in <a href=\"https://discord.gg/Fm8Pwmy\">the Gleam Discord server</a>. 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. </p> <p> |