aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-01-18 19:34:48 +0000
committerLouis Pilfold <louis@lpil.uk>2024-01-18 19:34:48 +0000
commitcc689c5f4f049d9847e2d251461acbd9ff21b3c4 (patch)
tree6ac60346cb40d7f5c5d7214ab984cd040227eb93 /src
parent5d74cb2ab8d0e6f6bf5175c1ae153194dd34bdf7 (diff)
downloadtour-cc689c5f4f049d9847e2d251461acbd9ff21b3c4.tar.gz
tour-cc689c5f4f049d9847e2d251461acbd9ff21b3c4.zip
Typos
Diffstat (limited to 'src')
-rw-r--r--src/content/chapter0_basics/lesson03_type_checking/text.html5
-rw-r--r--src/content/chapter1_functions/lesson06_generic_functions/text.html6
2 files changed, 5 insertions, 6 deletions
diff --git a/src/content/chapter0_basics/lesson03_type_checking/text.html b/src/content/chapter0_basics/lesson03_type_checking/text.html
index fadfe64..a9316c4 100644
--- a/src/content/chapter0_basics/lesson03_type_checking/text.html
+++ b/src/content/chapter0_basics/lesson03_type_checking/text.html
@@ -1,5 +1,5 @@
<p>
- Gleam has a robust static type system that is help you as you write and edit
+ Gleam has a robust static type system that helps you as you write and edit
code, catching mistakes and showing you where to make changes.
</p>
<p>
@@ -14,6 +14,5 @@
<p>
Gleam has no <code>null</code>, no implicit conversions, no exceptions, and
always performs full type checking. If the code compiles you can be reasonably
- confident it does not have any inconsistencies that may cause bugs or
- crashes.
+ confident it does not have any inconsistencies that may cause bugs or crashes.
</p>
diff --git a/src/content/chapter1_functions/lesson06_generic_functions/text.html b/src/content/chapter1_functions/lesson06_generic_functions/text.html
index 1369c93..fcd9bec 100644
--- a/src/content/chapter1_functions/lesson06_generic_functions/text.html
+++ b/src/content/chapter1_functions/lesson06_generic_functions/text.html
@@ -9,13 +9,13 @@
value are compatible.
</p>
<p>
- To enable this Gleam support <em>generics</em>, also known as <em>parametric
- polymorphism</em>.
+ To enable this Gleam support <em>generics</em>, also known as
+ <em>parametric polymorphism</em>.
</p>
<p>
This works by instead of specifying a concrete type, a type variable is used
which stands in for whatever specific type is being used when the function is
- called. These type variable are written with a lowercase name.
+ called. These type variables are written with a lowercase name.
</p>
<p>
Type variables are not like an <code>any</code> type, they get replaced with a