changeset 44:bbb3c4e61068

rustfmt
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 01 Feb 2016 21:03:07 +0000
parents ab7d19e012e0
children 46fdc16f8098
files src/record_types.rs
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/record_types.rs	Mon Feb 01 21:02:34 2016 +0000
+++ b/src/record_types.rs	Mon Feb 01 21:03:07 2016 +0000
@@ -12,7 +12,7 @@
     fn partial_cmp(&self, other: &Record) -> Option<Ordering> {
         match self.key.cmp(&other.key) {
             Ordering::Equal => Some(self.value.cmp(&other.value)),
-            o => Some(o)
+            o => Some(o),
         }
     }
 }