about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2015-08-26 14:28:42 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2015-08-26 14:28:42 +0200
commit805e4e6fd1e5dccf20e58322e4d0540fdb871b9b (patch)
tree6bee15cebb4173eb399ca666132386029e410506
parentdfb0677bee189fcd20c568009b620b9469d7becb (diff)
downloadrust-805e4e6fd1e5dccf20e58322e4d0540fdb871b9b.tar.gz
rust-805e4e6fd1e5dccf20e58322e4d0540fdb871b9b.zip
Remove unnecessary empty lines
-rw-r--r--src/librustc_typeck/diagnostics.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc_typeck/diagnostics.rs b/src/librustc_typeck/diagnostics.rs
index b50d2d9c26e..a2b3a600281 100644
--- a/src/librustc_typeck/diagnostics.rs
+++ b/src/librustc_typeck/diagnostics.rs
@@ -1988,7 +1988,6 @@ unsafe impl Foo { }
 // converting it to this will fix it
 impl Foo { }
 ```
-
 "##,
 
 E0198: r##"
@@ -2005,7 +2004,6 @@ unsafe impl !Clone for Foo { }
 // this will compile
 impl !Clone for Foo { }
 ```
-
 "##,
 
 E0199: r##"
@@ -2023,7 +2021,6 @@ unsafe impl Bar for Foo { }
 // this will compile
 impl Bar for Foo { }
 ```
-
 "##,
 
 E0200: r##"
@@ -2041,7 +2038,6 @@ impl Bar for Foo { }
 // this will compile
 unsafe impl Bar for Foo { }
 ```
-
 "##,
 
 E0201: r##"