aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergei Suvorov <srgsvrv11@gmail.com>2024-03-10 19:43:07 +0100
committerLouis Pilfold <louis@lpil.uk>2024-03-13 11:37:51 +0000
commit00fde5a5594ea2271779fba3790f1b9f04bd9636 (patch)
tree409b8dac6b546798e7e5a09a9fc6fe480a16b7e5 /src
parentd286bf399094c19f2498cddb3fe968d4389fe459 (diff)
downloadtour-00fde5a5594ea2271779fba3790f1b9f04bd9636.tar.gz
tour-00fde5a5594ea2271779fba3790f1b9f04bd9636.zip
Rephrase paragraphs in chapter1_functions/lesson06_generic_functions
Rephrased a paragraph in `chapter1_functions/lesson06_generic_functions/en.html` to make the idea clearer. The second paragraph also contains some typos, but they are being fixed in [this PR](https://github.com/gleam-lang/language-tour/pull/41), so I'm leaving them as-is here
Diffstat (limited to 'src')
-rw-r--r--src/content/chapter1_functions/lesson06_generic_functions/en.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/chapter1_functions/lesson06_generic_functions/en.html b/src/content/chapter1_functions/lesson06_generic_functions/en.html
index 7bbc340..0cfcabd 100644
--- a/src/content/chapter1_functions/lesson06_generic_functions/en.html
+++ b/src/content/chapter1_functions/lesson06_generic_functions/en.html
@@ -14,8 +14,8 @@
<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
+ This works by using a type variable istead of specifying a concrete type. It
+ stands in for whatever specific type is being used when the function is
called. These type variables are written with a lowercase name.
</p>
<p>