about summary refs log tree commit diff
diff options
context:
space:
mode:
authorjbranchaud <jbranchaud@gmail.com>2014-12-06 17:36:32 -0600
committerjbranchaud <jbranchaud@gmail.com>2014-12-06 17:36:32 -0600
commit2171c95553e1cf225e9e6e799ebecfb959ff2277 (patch)
treea4561a24adde2b75773b64d8708dabde66ce9c07
parentde83d7dd191bf5564855057a29f9b5d9dcfcb201 (diff)
Add missing semicolon to hello world program in intro.
-rw-r--r--src/doc/intro.md2
1 files changed, 1 insertions, 1 deletions
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!");
 }
 ```