From a19dce6c162f0dc24c615e8e667f190117126293 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 28 Aug 2012 15:54:04 -0700 Subject: [PATCH] correct name of SendMap trait --- src/libcore/send_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;