diff options
| author | David Mally <djmally@gmail.com> | 2015-03-02 15:01:44 -0500 |
|---|---|---|
| committer | David Mally <djmally@gmail.com> | 2015-03-02 15:01:44 -0500 |
| commit | 0a1776495c48db19a8e1fe27acc81bab908e256a (patch) | |
| tree | eb072fb4eed70a48f0d324495ac0b535899549c8 | |
| parent | 7d3119773f218e69ab9e71df4510549b8d61347b (diff) | |
| download | rust-0a1776495c48db19a8e1fe27acc81bab908e256a.tar.gz rust-0a1776495c48db19a8e1fe27acc81bab908e256a.zip | |
Added note that method names in tables may differ from actual collections
| -rw-r--r-- | src/libstd/collections/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs index 2d7e5cddc61..caada8ae50f 100644 --- a/src/libstd/collections/mod.rs +++ b/src/libstd/collections/mod.rs @@ -89,7 +89,8 @@ //! //! Choosing the right collection for the job requires an understanding of what each collection //! is good at. Here we briefly summarize the performance of different collections for certain -//! important operations. For further details, see each type's documentation. +//! important operations. For further details, see each type's documentation, and note that the +//! names of actual methods may differ from the tables below on certain collections. //! //! Throughout the documentation, we will follow a few conventions. For all operations, //! the collection's size is denoted by n. If another collection is involved in the operation, it |
