diff options
Diffstat (limited to 'src')
-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> |