From b4481e68deeffc9e6cf4648d10c51750adbb4c3b Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Fri, 19 Jun 2015 13:58:52 +0200 Subject: [PATCH] Remove unneeded indentation --- src/librustc_typeck/diagnostics.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_typeck/diagnostics.rs b/src/librustc_typeck/diagnostics.rs index c95dbd3ca13b..f338a774e90e 100644 --- a/src/librustc_typeck/diagnostics.rs +++ b/src/librustc_typeck/diagnostics.rs @@ -223,7 +223,7 @@ impl Test { fn main() { let x = Test; - + x.method::(); // 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! } ```