From 3f4ae0606d6e18065dcb13d426f4b11e2a43370d Mon Sep 17 00:00:00 2001 From: Michael Lee Date: Sat, 7 Jan 2023 15:38:40 +0800 Subject: [PATCH] Update broken links --- src/exercises/day-1/iterators-and-ownership.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exercises/day-1/iterators-and-ownership.md b/src/exercises/day-1/iterators-and-ownership.md index 6034ba7e..39affe52 100644 --- a/src/exercises/day-1/iterators-and-ownership.md +++ b/src/exercises/day-1/iterators-and-ownership.md @@ -104,7 +104,7 @@ What is the type of `word` in each loop? Experiment with the code above and then consult the documentation for [`impl IntoIterator for -&Vec`](https://doc.rust-lang.org/std/vec/struct.Vec.html#impl-IntoIterator-2) +&Vec`](https://doc.rust-lang.org/std/vec/struct.Vec.html#impl-IntoIterator-for-%26%27a%20Vec%3CT%2C%20A%3E) and [`impl IntoIterator for -Vec`](https://doc.rust-lang.org/std/vec/struct.Vec.html#impl-IntoIterator-1) +Vec`](https://doc.rust-lang.org/std/vec/struct.Vec.html#impl-IntoIterator-for-%26%27a%20Vec%3CT%2C%20A%3E) to check your answers.