Skip to content

Commit a19dce6

Browse files
committed
correct name of SendMap trait
1 parent a605fd0 commit a19dce6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/send_map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Sendable hash maps. Very much a work in progress.
1313
type HashFn<K> = pure fn~(K) -> uint;
1414
type EqFn<K> = pure fn~(K, K) -> bool;
1515

16-
trait send_map<K, V: copy> {
16+
trait SendMap<K, V: copy> {
1717
// FIXME(#3148) ^^^^ once find_ref() works, we can drop V:copy
1818

1919
fn insert(&mut self, +k: K, +v: V) -> bool;

0 commit comments

Comments
 (0)