quick formatting fix

This commit is contained in:
Matt Roche 2015-01-18 15:28:12 -05:00
parent 4347cbbd66
commit 9293607f8f

View file

@ -87,11 +87,7 @@ println!("{}", x + z);
This gives us an error:
```text
hello.rs:6:24: 6:25 error: mismatched types:
expected `_`,
found `&_`
(expected integral variable,
found &-ptr)
hello.rs:6:24: 6:25 error: mismatched types: expected `_`, found `&_` (expected integral variable, found &-ptr)
hello.rs:6 println!("{}", x + z);
^
```