style fix

This commit is contained in:
Daniel Micay 2013-01-21 17:12:35 -05:00
parent c9c8d6fdd1
commit 66e50892c1

View File

@ -64,9 +64,7 @@ impl <K: Eq Ord, V: Eq> TreeMap<K, V>: Eq {
true
}
}
pure fn ne(&self, other: &TreeMap<K, V>) -> bool {
!self.eq(other)
}
pure fn ne(&self, other: &TreeMap<K, V>) -> bool { !self.eq(other) }
}
impl <K: Ord, V> TreeMap<K, V> {