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:
commit
80660d6ba0
33 changed files with 45 additions and 59 deletions
|
|
@ -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.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -236,13 +236,3 @@ complicated.
|
|||
Luckily, Rust offers a feature, borrowing, which helps us solve this problem.
|
||||
It’s the topic of the next section!
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue