Clean newlines

This commit is contained in:
Carlos Liam 2015-10-06 11:14:11 -04:00
parent 2f60768e84
commit 3967e1c940
29 changed files with 45 additions and 46 deletions

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);
}
```