diff --git a/README.md b/README.md index 5c5942ad268..e2f1df4fa97 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,16 @@ hashglobe ======== -This is a fork of Rust's `std::HashMap`. It will work on stable out-of-stdlib and will also have fallible APIs. +This is a fork of Rust's `std::HashMap`. It works on stable out of the stdlib and has fallible APIs. We intend to diverge as little as possible from the original hashmap. Dual licensed Apache/MIT, the same as the stdlib. + + +## Should I use this? + +No. + +Wait for https://github.com/rust-lang/rfcs/pull/2116 instead. diff --git a/src/alloc.rs b/src/alloc.rs index 8bcac614d28..c5e213b2931 100644 --- a/src/alloc.rs +++ b/src/alloc.rs @@ -1,4 +1,4 @@ -// FORK NOTE: Copied from libsystem_alloc, removed unnecessary APIs, +// FORK NOTE: Copied from liballoc_system, removed unnecessary APIs, // APIs take size/align directly instead of Layout