From 060224af687f5d16d593938da5d1fcc1a729955a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rahul=20Hor=C3=A9?= Date: Fri, 3 Oct 2014 13:59:32 -0400 Subject: [PATCH] Fixes output --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index aeb21a28bdc..c7877796291 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 -- GitLab