From 3626a308f35388a40523dfbd7ec75f5931b62d97 Mon Sep 17 00:00:00 2001 From: nathan dotz Date: Thu, 15 Jan 2015 18:15:18 -0500 Subject: [PATCH] Fix commented graphs in src/doc/trpl/ownership.md --- src/doc/trpl/ownership.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md index 8e5a757e1bda7..319b45c5273c7 100644 --- a/src/doc/trpl/ownership.md +++ b/src/doc/trpl/ownership.md @@ -310,7 +310,7 @@ valid for. For example: ```rust fn main() { - let y = &5; // -+ y goes into scope + let y = &5; // -+ y goes into scope // | // stuff // | // | @@ -325,7 +325,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 // | // | @@ -344,7 +344,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