summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarol (Nichols || Goulding) <193874+carols10cents@users.noreply.github.com>2018-02-20 10:32:31 -0500
committerGitHub <noreply@github.com>2018-02-20 10:32:31 -0500
commitc4b32528457063b0b97da37617c2a9ff652a4cba (patch)
treee4451b625540a2c46cca5196fcabb857dbce209e
parenta87d43dc230cc477d948bf4fb0ef0101c165fa0e (diff)
parent0cd22309a1272ee0abdcd5a874e0df79f20f9931 (diff)
Merge pull request #67 from robertlugg/patch-1
Link to second edition of book
-rw-r--r--primitive_types/primitive_types3.rs2
1 files changed, 1 insertions, 1 deletions
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`?