Auto merge of #28864 - aarzee:master, r=steveklabnik

Remove leading newlines in files and replace lines containing only whitespace with blank lines
This commit is contained in:
bors 2015-10-06 20:21:34 +00:00
commit 80660d6ba0
33 changed files with 45 additions and 59 deletions

View file

@ -64,4 +64,3 @@ does in fact live as long as we needed. However it was *changed* while we had
a reference into it. This is why Rust requires any references to freeze the
referent and its owners.

View file

@ -236,13 +236,3 @@ complicated.
Luckily, Rust offers a feature, borrowing, which helps us solve this problem.
Its the topic of the next section!

View file

@ -363,7 +363,7 @@ note: reference must be valid for the block suffix following statement 0 at
let y: &i32;
let x = 5;
y = &x;
println!("{}", y);
}
@ -371,7 +371,7 @@ note: ...but borrowed value is only valid for the block suffix following
statement 1 at 3:14
let x = 5;
y = &x;
println!("{}", y);
}
```