rename send_map to hashmap

This makes the module much more discoverable, and is in line with the
'treemap' naming.
This commit is contained in:
Daniel Micay 2013-01-23 10:25:27 -05:00
parent 54344c2468
commit b7ef28c33a
13 changed files with 20 additions and 20 deletions

View file

@ -17,7 +17,7 @@
extern mod std;
use std::map;
use core::mutable::Mut;
use core::send_map::linear::*;
use core::hashmap::linear::*;
use core::io::WriterUtil;
struct Results {

View file

@ -11,7 +11,7 @@
// xfail-test
extern mod std;
use send_map::linear;
use hashmap::linear;
use std::json;
use std::serialization::{Deserializable, deserialize};