Fixes output

This commit is contained in:
Rahul Horé 2014-10-03 13:59:32 -04:00
parent e8ddad18e8
commit 060224af68
1 changed files with 1 additions and 1 deletions

View File

@ -1561,7 +1561,7 @@ println!("The second name is: {}", names[1]);
These subscripts start at zero, like in most programming languages, so the
first name is `names[0]` and the second name is `names[1]`. The above example
prints `The second name is Brian`.
prints `The second name is: Brian`.
There's a whole lot more to vectors, but that's enough to get started. We have
now learned all of the most basic Rust concepts. We're ready to start building