about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-04 01:21:19 +0000
committerbors <bors@rust-lang.org>2014-07-04 01:21:19 +0000
commit5b11610ced12e42f3de4d7f41fe47bbf07dd5af2 (patch)
tree737cb0d8dd10e23a81386bb6f19cc386ad24c452 /src/doc
parent5d5c20647f45f2eb74f337e5434bbe63b0c43345 (diff)
parentc4ac124edda29eabffc2acc3255aca1a0c2680f0 (diff)
downloadrust-5b11610ced12e42f3de4d7f41fe47bbf07dd5af2.tar.gz
rust-5b11610ced12e42f3de4d7f41fe47bbf07dd5af2.zip
auto merge of #15343 : alexcrichton/rust/0.11.0-release, r=brson
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 aca726812d2..dc9608563e1 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() {
-   
+
 }
 ```
 
@@ -395,7 +395,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!
 ```