about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2012-08-28 15:54:04 -0700
committerNiko Matsakis <niko@alum.mit.edu>2012-08-28 19:10:44 -0700
commita19dce6c162f0dc24c615e8e667f190117126293 (patch)
treed978f012858d7fd020f92b08f4052a4562eaaa45
parenta605fd0cadb578cf917c93646114eac2f1da8e84 (diff)
correct name of SendMap trait
-rw-r--r--src/libcore/send_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/send_map.rs b/src/libcore/send_map.rs
index 12d3583aef1..2b85a0d5784 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<K> = pure fn~(K) -> uint;
 type EqFn<K> = pure fn~(K, K) -> bool;
 
-trait send_map<K, V: copy> {
+trait SendMap<K, V: copy> {
     // FIXME(#3148)  ^^^^ once find_ref() works, we can drop V:copy
 
     fn insert(&mut self, +k: K, +v: V) -> bool;