diff --git a/src/libcore/send_map.rs b/src/libcore/send_map.rs index 12d3583aef15..2b85a0d57845 100644 --- a/src/libcore/send_map.rs +++ b/src/libcore/send_map.rs @@ -13,7 +13,7 @@ Sendable hash maps. Very much a work in progress. type HashFn = pure fn~(K) -> uint; type EqFn = pure fn~(K, K) -> bool; -trait send_map { +trait SendMap { // FIXME(#3148) ^^^^ once find_ref() works, we can drop V:copy fn insert(&mut self, +k: K, +v: V) -> bool;