Merge pull request #21214 from sleepynate/spacing-in-book

Fix commented graphs in src/doc/trpl/ownership.md

Reviewed-by: huonw
This commit is contained in:
bors 2015-01-16 06:31:03 +00:00
commit f3d71be65c
1 changed files with 3 additions and 3 deletions

View File

@ -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