Skip to content

Commit ff3e6c0

Browse files
committed
Merge branch 'main'
2 parents 33dfe53 + 888ad35 commit ff3e6c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exercises/14_generics/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Generics
22

33
Generics is the topic of generalizing types and functionalities to broader cases.
4-
This is extremely useful for reducing code duplication in many ways, but can call for rather involving syntax.
4+
This is extremely useful for reducing code duplication in many ways, but can call for some rather involved syntax.
55
Namely, being generic requires taking great care to specify over which types a generic type is actually considered valid.
66
The simplest and most common use of generics is for type parameters.
77

exercises/quizzes/quiz2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// - Append "bar" to the string a specified amount of times
1414
//
1515
// The exact form of this will be:
16-
// - The input is going to be a vector of a 2-length tuple,
16+
// - The input is going to be a Vector of 2-length tuples,
1717
// the first element is the string, the second one is the command.
1818
// - The output element is going to be a vector of strings.
1919

0 commit comments

Comments
 (0)