diff --git a/src/doc/guide.md b/src/doc/guide.md index aeb21a28bdcf7470770b9b637978a280a02ede39..c78777962919a34e9edde8d85acd54625d42e356 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -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