diff options
author | Sergei Suvorov <srgsvrv11@gmail.com> | 2024-03-10 19:43:07 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-03-13 11:37:51 +0000 |
commit | 00fde5a5594ea2271779fba3790f1b9f04bd9636 (patch) | |
tree | 409b8dac6b546798e7e5a09a9fc6fe480a16b7e5 /src/content | |
parent | d286bf399094c19f2498cddb3fe968d4389fe459 (diff) | |
download | tour-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/content')
-rw-r--r-- | src/content/chapter1_functions/lesson06_generic_functions/en.html | 4 |
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> |