From 2dcf917fa1538cfaf0ddf4eeea4877c35c8285e7 Mon Sep 17 00:00:00 2001 From: "Yung Beef 4.2" <89395745+Yung-Beef@users.noreply.github.com> Date: Fri, 28 Jun 2024 15:49:09 -0300 Subject: [PATCH 1/2] docs: clarifying quiz 2 instructions --- exercises/quiz2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index 29925caf..f9ba953c 100644 --- a/exercises/quiz2.rs +++ b/exercises/quiz2.rs @@ -14,7 +14,7 @@ // - Trim the string // - Append "bar" to the string a specified amount of times // The exact form of this will be: -// - The input is going to be a Vector of a 2-length tuple, +// - The input is going to be a Vector of 2-length tuples, // the first element is the string, the second one is the command. // - The output element is going to be a Vector of strings. // From fa452b3a93bd0557270696235f3dd25c3c968d89 Mon Sep 17 00:00:00 2001 From: "Yung Beef 4.2" <89395745+Yung-Beef@users.noreply.github.com> Date: Tue, 2 Jul 2024 18:30:54 -0300 Subject: [PATCH 2/2] Update README.md --- exercises/14_generics/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/14_generics/README.md b/exercises/14_generics/README.md index de46d503..72cff3f3 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.