From b238ba47f36a31894d70a80e08fd3eb9d0b23a0c Mon Sep 17 00:00:00 2001 From: Grzegorz Szymaszek Date: Tue, 3 Dec 2019 19:00:31 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20the=20link=20to=20=E2=80=9CExample:=20Imp?= =?UTF-8?q?lementing=20Vec=E2=80=9D=20in=20ch08-01?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch08-01-vectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch08-01-vectors.md b/src/ch08-01-vectors.md index aaf15381f..b74e87544 100644 --- a/src/ch08-01-vectors.md +++ b/src/ch08-01-vectors.md @@ -198,7 +198,7 @@ element would be pointing to deallocated memory. The borrowing rules prevent programs from ending up in that situation. > Note: For more on the implementation details of the `Vec` type, see “The -> Rustonomicon” at https://doc.rust-lang.org/stable/nomicon/vec.html. +> Rustonomicon” at . ### Iterating over the Values in a Vector