From 1f85c711aff340ac8da97b944e8f202219327f15 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sun, 20 Jan 2013 17:07:57 -0500 Subject: [PATCH] fix long lines --- src/libcore/send_map.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/libcore/send_map.rs b/src/libcore/send_map.rs index 5c7b0643d3d..1e526c5d08f 100644 --- a/src/libcore/send_map.rs +++ b/src/libcore/send_map.rs @@ -474,8 +474,12 @@ impl LinearSet: BaseIter { } impl LinearSet: Eq { - pure fn eq(&self, other: &LinearSet) -> bool { self.map == other.map } - pure fn ne(&self, other: &LinearSet) -> bool { self.map != other.map } + pure fn eq(&self, other: &LinearSet) -> bool { + self.map == other.map + } + pure fn ne(&self, other: &LinearSet) -> bool { + self.map != other.map + } } impl LinearSet: Set {