summary refs log tree commit diff
path: root/src/doc/guide.md
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-27 11:07:26 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-27 12:50:16 -0700
commitaa1163b92de7717eb7c5eba002b4012e0574a7fe (patch)
tree7b18828f0f63693271cb4f38da4b80e1cc418f2e /src/doc/guide.md
parent1fefa5b5149211c7acd11fd2ab78d9ca9873ed92 (diff)
downloadrust-0.11.0.tar.gz
rust-0.11.0.zip
Update to 0.11.0 0.11.0
Diffstat (limited to 'src/doc/guide.md')
-rw-r--r--src/doc/guide.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index bf54b3dc6a4..e5a753f55d0 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -53,7 +53,7 @@ an uninstall option.
 
 You can re-run this script any time you want to update Rust. Which, at this
 point, is often. Rust is still pre-1.0, and so people assume that you're using
-a very recent Rust. 
+a very recent Rust.
 
 This brings me to one other point: some people, and somewhat rightfully so, get
 very upset when we tell you to `curl | sudo sh`. And they should be! Basically,
@@ -168,7 +168,7 @@ Success! Let's go over what just happened in detail.
 
 ```
 fn main() {
-   
+
 }
 ```
 
@@ -394,7 +394,7 @@ Once you have this file in place, we should be ready to build! Try this:
 ```{bash}
 $ cargo build
    Compiling hello_world v0.1.0 (file:/home/yourname/projects/hello_world)
-$ ./target/hello_world 
+$ ./target/hello_world
 Hello, world!
 ```