diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-17 08:34:11 -0800 | 
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-12-17 11:50:26 -0800 | 
| commit | f7cb5b6c20f06831866668e0303910150cff22ff (patch) | |
| tree | 249b5a22703eb6fd14b902eca7b8107656043963 | |
| parent | 924cd5a6d6b7a9901644eb2a4791b80e8d9a74fd (diff) | |
| parent | 5c29df6b28a82d1c74c9d799f82daac81f0304d8 (diff) | |
| download | rust-f7cb5b6c20f06831866668e0303910150cff22ff.tar.gz rust-f7cb5b6c20f06831866668e0303910150cff22ff.zip  | |
rollup merge of #19845: jbranchaud/fix-indentation-in-ownership-guide
For reference, this is what the code example looks like before the change: 
| -rw-r--r-- | src/doc/guide-ownership.md | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-ownership.md b/src/doc/guide-ownership.md index ddabb1de765..242dfe46d6b 100644 --- a/src/doc/guide-ownership.md +++ b/src/doc/guide-ownership.md @@ -341,7 +341,7 @@ fn main() { { // | let y = &5i; // ---+ y goes into scope let f = Foo { x: y }; // ---+ f goes into scope - x = &f.x; // | | error here + x = &f.x; // | | error here } // ---+ f & y go out of scope // | println!("{}", x); // |  | 
