mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
correct name of SendMap trait
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user