diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2017-02-12 19:16:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-12 19:16:29 +0100 |
| commit | 747b9e590f6c717c5be626c064b1d9a760d45d07 (patch) | |
| tree | 95188d64cec6e7af6ede192ff46a22b184b9a74f /src/libstd/collections | |
| parent | be0e7498f0376367ee37fd7da0ec747ac199ec4b (diff) | |
| parent | 8251a2d73f077d3358ea88dbb6b7971a57f72d40 (diff) | |
| download | rust-747b9e590f6c717c5be626c064b1d9a760d45d07.tar.gz rust-747b9e590f6c717c5be626c064b1d9a760d45d07.zip | |
Rollup merge of #39662 - Henning-K:patch-1, r=frewsxcv
Fixes #39661 Clarifies the potential ambiguity.
Diffstat (limited to 'src/libstd/collections')
| -rw-r--r-- | src/libstd/collections/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs index b9e92a01b2f..8884d0688b8 100644 --- a/src/libstd/collections/mod.rs +++ b/src/libstd/collections/mod.rs @@ -68,7 +68,7 @@ //! * You want to find the largest or smallest key that is smaller or larger //! than something. //! * You want to be able to get all of the entries in order on-demand. -//! * You want a sorted map. +//! * You want a map sorted by its keys. //! //! ### Use the `Set` variant of any of these `Map`s when: //! * You just want to remember which keys you've seen. |
