summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
Diffstat (limited to 'exercises')
-rw-r--r--exercises/04_primitive_types/README.md4
-rw-r--r--exercises/05_vecs/README.md2
-rw-r--r--exercises/12_options/README.md2
-rw-r--r--exercises/14_generics/README.md2
4 files changed, 5 insertions, 5 deletions
diff --git a/exercises/04_primitive_types/README.md b/exercises/04_primitive_types/README.md
index cea69b0..d67668a 100644
--- a/exercises/04_primitive_types/README.md
+++ b/exercises/04_primitive_types/README.md
@@ -5,5 +5,5 @@ compiler. In this section, we'll go through the most important ones.
## Further information
-- [Data Types](https://doc.rust-lang.org/stable/book/ch03-02-data-types.html)
-- [The Slice Type](https://doc.rust-lang.org/stable/book/ch04-03-slices.html)
+- [Data Types](https://doc.rust-lang.org/book/ch03-02-data-types.html)
+- [The Slice Type](https://doc.rust-lang.org/book/ch04-03-slices.html)
diff --git a/exercises/05_vecs/README.md b/exercises/05_vecs/README.md
index 8ff9b85..e1b6128 100644
--- a/exercises/05_vecs/README.md
+++ b/exercises/05_vecs/README.md
@@ -12,6 +12,6 @@ the other useful data structure, hash maps, later.
## Further information
-- [Storing Lists of Values with Vectors](https://doc.rust-lang.org/stable/book/ch08-01-vectors.html)
+- [Storing Lists of Values with Vectors](https://doc.rust-lang.org/book/ch08-01-vectors.html)
- [`iter_mut`](https://doc.rust-lang.org/std/primitive.slice.html#method.iter_mut)
- [`map`](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.map)
diff --git a/exercises/12_options/README.md b/exercises/12_options/README.md
index bdd3374..624572a 100644
--- a/exercises/12_options/README.md
+++ b/exercises/12_options/README.md
@@ -14,7 +14,7 @@ Option types are very common in Rust code, as they have a number of uses:
## Further Information
-- [Option Enum Format](https://doc.rust-lang.org/stable/book/ch10-01-syntax.html#in-enum-definitions)
+- [Option Enum Format](https://doc.rust-lang.org/book/ch10-01-syntax.html#in-enum-definitions)
- [Option Module Documentation](https://doc.rust-lang.org/std/option/)
- [Option Enum Documentation](https://doc.rust-lang.org/std/option/enum.Option.html)
- [if let](https://doc.rust-lang.org/rust-by-example/flow_control/if_let.html)
diff --git a/exercises/14_generics/README.md b/exercises/14_generics/README.md
index 72cff3f..0c8c8cb 100644
--- a/exercises/14_generics/README.md
+++ b/exercises/14_generics/README.md
@@ -7,5 +7,5 @@ The simplest and most common use of generics is for type parameters.
## Further information
-- [Generic Data Types](https://doc.rust-lang.org/stable/book/ch10-01-syntax.html)
+- [Generic Data Types](https://doc.rust-lang.org/book/ch10-01-syntax.html)
- [Bounds](https://doc.rust-lang.org/rust-by-example/generics/bounds.html)