From 2171c95553e1cf225e9e6e799ebecfb959ff2277 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sat, 6 Dec 2014 17:36:32 -0600 Subject: [PATCH] Add missing semicolon to hello world program in intro. --- src/doc/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/intro.md b/src/doc/intro.md index 01697a3e0cb..2e1d7d9d613 100644 --- a/src/doc/intro.md +++ b/src/doc/intro.md @@ -64,7 +64,7 @@ Here's what's in `src/main.rs`: ```{rust} fn main() { - println!("Hello, world!") + println!("Hello, world!"); } ```