summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMo <76752051+mo8it@users.noreply.github.com>2024-07-03 01:04:19 +0200
committerGitHub <noreply@github.com>2024-07-03 01:04:19 +0200
commit888ad35d10e8bc6832c11fd8268697311497c1c9 (patch)
tree7b3450c613affbf7b943a8b2eea9b6e48f724dac
parent18a9a2e7910319453ca8b72d4d6584c74db00bc0 (diff)
parentfa452b3a93bd0557270696235f3dd25c3c968d89 (diff)
Merge pull request #2009 from Yung-Beef/patch-2
Update README.md
-rw-r--r--exercises/14_generics/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/14_generics/README.md b/exercises/14_generics/README.md
index de46d50..72cff3f 100644
--- a/exercises/14_generics/README.md
+++ b/exercises/14_generics/README.md
@@ -1,7 +1,7 @@
# Generics
Generics is the topic of generalizing types and functionalities to broader cases.
-This is extremely useful for reducing code duplication in many ways, but can call for rather involving syntax.
+This is extremely useful for reducing code duplication in many ways, but can call for some rather involved syntax.
Namely, being generic requires taking great care to specify over which types a generic type is actually considered valid.
The simplest and most common use of generics is for type parameters.