]> git.lizzy.rs Git - rust.git/commitdiff
Remove unneeded indentation
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Fri, 19 Jun 2015 11:58:52 +0000 (13:58 +0200)
committerGuillaume Gomez <guillaume1.gomez@gmail.com>
Fri, 19 Jun 2015 11:58:52 +0000 (13:58 +0200)
src/librustc_typeck/diagnostics.rs

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