From e4ec7e61281a3db8a8a3741f870a8d41676f5c3b Mon Sep 17 00:00:00 2001 From: Steven Black Date: Fri, 17 Sep 2021 11:22:20 -0400 Subject: [PATCH] involving === verb, involved === adjective Change `involving` to `involved` to now read, `...call for rather involved syntax.` --- src/generics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generics.md b/src/generics.md index 86ecc581a9..2cfd54ffb3 100644 --- a/src/generics.md +++ b/src/generics.md @@ -2,7 +2,7 @@ *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. Namely, being generic requires +but can call for 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.