summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorZerotask <Zerotask@users.noreply.github.com>2021-04-22 22:11:04 +0200
committerZerotask <Zerotask@users.noreply.github.com>2021-04-22 22:11:04 +0200
commitf253103a314b9cdbda1d6271015cf64e5b2347bd (patch)
tree5fbdde4c19b310da3d36e550f1e978f98b5bb6b9 /exercises
parentafa661cff4fa9ac5133a6efc9e85e01c29febf85 (diff)
docs(generics): add bounds help
add help for bounds provided by the rust by example book
Diffstat (limited to 'exercises')
-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)