summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)