summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarisa <mokou@fastmail.com>2021-04-23 15:05:00 +0200
committerGitHub <noreply@github.com>2021-04-23 15:05:00 +0200
commit54804e344d84bb620447b7975a5b8ec4f9de2671 (patch)
treef66d4b8cb4e09cd6a792fb488e71d37c711beacb
parent1c334de6fd262dcb8b921e3fc491a7434e0c3a4a (diff)
parentf253103a314b9cdbda1d6271015cf64e5b2347bd (diff)
Merge pull request #721 from Zerotask/add-further-help-for-generics3
docs(generics): add bounds help
-rw-r--r--exercises/generics/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/exercises/generics/README.md b/exercises/generics/README.md
index 7105f06..12170d4 100644
--- a/exercises/generics/README.md
+++ b/exercises/generics/README.md
@@ -4,4 +4,5 @@ In this section you'll learn about saving yourself many lines of code with gener
### Book Sections
-- [Generic Data Types](https://doc.rust-lang.org/stable/book/ch10-01-syntax.html) \ No newline at end of file
+- [Generic Data Types](https://doc.rust-lang.org/stable/book/ch10-01-syntax.html)
+- [Bounds](https://doc.rust-lang.org/rust-by-example/generics/bounds.html)