From 0cd22309a1272ee0abdcd5a874e0df79f20f9931 Mon Sep 17 00:00:00 2001 From: Robert M Lugg Date: Mon, 19 Feb 2018 18:43:33 -0800 Subject: [PATCH] Link to second edition of book --- primitive_types/primitive_types3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primitive_types/primitive_types3.rs b/primitive_types/primitive_types3.rs index c988d4f..3476ba6 100644 --- a/primitive_types/primitive_types3.rs +++ b/primitive_types/primitive_types3.rs @@ -40,6 +40,6 @@ fn main() { // There's a shorthand to initialize Arrays with a certain size that does not // require you to type in 100 items (but you certainly can if you want!) // Check out the Primitive Types -> Arrays section of the book: -// http://doc.rust-lang.org/stable/book/primitive-types.html#arrays +// https://doc.rust-lang.org/stable/book/second-edition/ch03-02-data-types.html#arrays // Bonus: what are some other things you could have that would return true // for `a.len() >= 100`?