Remove unneeded indentation

This commit is contained in:
Guillaume Gomez 2015-06-19 13:58:52 +02:00
parent 04888e7c60
commit b4481e68de

View file

@ -223,7 +223,7 @@ impl Test {
fn main() {
let x = Test;
x.method::<i32>(); // Error: Test::method doesn't need type parameter!
}
```
@ -239,7 +239,7 @@ impl Test {
fn main() {
let x = Test;
x.method(); // OK, we're good!
}
```