correct name of SendMap trait

This commit is contained in:
Niko Matsakis 2012-08-28 15:54:04 -07:00
parent a605fd0cad
commit a19dce6c16

View File

@ -13,7 +13,7 @@
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;