Merge pull request #67 from robertlugg/patch-1

Link to second edition of book
This commit is contained in:
Carol (Nichols || Goulding) 2018-02-20 10:32:31 -05:00 committed by GitHub
commit c4b3252845
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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`?