1
Fork 0

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

@ -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();