diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-01-23 10:25:27 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-01-23 14:25:01 -0500 |
| commit | b7ef28c33abff6bcaf353a3958e497e15ee3268d (patch) | |
| tree | b3dd52f504f2897d99bd6d814a4386e7660cee07 /src/libstd/json.rs | |
| parent | 54344c2468b95c4de5a297ddf4a5519792a34410 (diff) | |
| download | rust-b7ef28c33abff6bcaf353a3958e497e15ee3268d.tar.gz rust-b7ef28c33abff6bcaf353a3958e497e15ee3268d.zip | |
rename send_map to hashmap
This makes the module much more discoverable, and is in line with the 'treemap' naming.
Diffstat (limited to 'src/libstd/json.rs')
| -rw-r--r-- | src/libstd/json.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/json.rs b/src/libstd/json.rs index 83e98ac1ed1..770266f3939 100644 --- a/src/libstd/json.rs +++ b/src/libstd/json.rs @@ -24,7 +24,7 @@ use core::float; use core::io::{WriterUtil, ReaderUtil}; use core::io; use core::prelude::*; -use core::send_map::linear; +use core::hashmap::linear; use core::str; use core::to_str; use core::vec; @@ -1223,7 +1223,7 @@ mod tests { use json::*; use core::result; - use core::send_map::linear; + use core::hashmap::linear; fn mk_object(items: &[(~str, Json)]) -> Json { let mut d = ~linear::LinearMap(); |
