about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-01-16 06:31:03 +0000
committerbors <bors@rust-lang.org>2015-01-16 06:31:03 +0000
commitf3d71be65cccfddd232e733c11129ed53961f980 (patch)
treea12e13bd683e17229f6367a8b8aada2599f41bb2
parentea9b00fdadecbbe3961a84122a37a4700c6335da (diff)
parent3626a308f35388a40523dfbd7ec75f5931b62d97 (diff)
downloadrust-f3d71be65cccfddd232e733c11129ed53961f980.tar.gz
rust-f3d71be65cccfddd232e733c11129ed53961f980.zip
Merge pull request #21214 from sleepynate/spacing-in-book
Fix commented graphs in src/doc/trpl/ownership.md

Reviewed-by: huonw
-rw-r--r--src/doc/trpl/ownership.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md
index 011746cf5b1..7a397ce5354 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -326,7 +326,7 @@ valid for. For example:
 
 ```rust
 fn main() {
-    let y = &5;    // -+ y goes into scope
+    let y = &5;     // -+ y goes into scope
                     //  |
     // stuff        //  |
                     //  |
@@ -341,7 +341,7 @@ struct Foo<'a> {
 }
 
 fn main() {
-    let y = &5;          // -+ y goes into scope
+    let y = &5;           // -+ y goes into scope
     let f = Foo { x: y }; // -+ f goes into scope
     // stuff              //  |
                           //  |
@@ -360,7 +360,7 @@ fn main() {
     let x;                    // -+ x goes into scope
                               //  |
     {                         //  |
-        let y = &5;          // ---+ y goes into scope
+        let y = &5;           // ---+ y goes into scope
         let f = Foo { x: y }; // ---+ f goes into scope
         x = &f.x;             //  | | error here
     }                         // ---+ f and y go out of scope