summary refs log tree commit diff
path: root/src/doc
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
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')
-rw-r--r--src/doc/README.md4
-rw-r--r--src/doc/guide.md6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/doc/README.md b/src/doc/README.md
index 759a21af0ce..f8b0f07d19a 100644
--- a/src/doc/README.md
+++ b/src/doc/README.md
@@ -53,12 +53,12 @@ To generate .pot and .po files, do something like:
 ~~~~
 po4a --copyright-holder="The Rust Project Developers" \
     --package-name="Rust" \
-    --package-version="0.11.0-pre" \
+    --package-version="0.11.0" \
     -M UTF-8 -L UTF-8 \
     src/doc/po4a.conf
 ~~~~
 
-(the version number must be changed if it is not 0.11.0-pre now.)
+(the version number must be changed if it is not 0.11.0 now.)
 
 Now you can translate documents with .po files, commonly used with gettext. If
 you are not familiar with gettext-based translation, please read the online
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!
 ```