about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/librustc/middle/trans/deriving.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc/middle/trans/deriving.rs b/src/librustc/middle/trans/deriving.rs
index 6aacab13ed4..93f65b5ad0e 100644
--- a/src/librustc/middle/trans/deriving.rs
+++ b/src/librustc/middle/trans/deriving.rs
@@ -23,8 +23,8 @@ use syntax::ast_util::local_def;
 
 /// The kind of deriving method this is.
 enum DerivingKind {
-    BoolKind,	// fn f(&self, other: &other) -> bool
-    UnitKind,	// fn f(&self) -> ()
+    BoolKind,   // fn f(&self, other: &other) -> bool
+    UnitKind,   // fn f(&self) -> ()
 }
 
 impl DerivingKind {