about summary refs log tree commit diff
path: root/src/libstd/collections
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2017-02-12 19:16:29 +0100
committerGitHub <noreply@github.com>2017-02-12 19:16:29 +0100
commit747b9e590f6c717c5be626c064b1d9a760d45d07 (patch)
tree95188d64cec6e7af6ede192ff46a22b184b9a74f /src/libstd/collections
parentbe0e7498f0376367ee37fd7da0ec747ac199ec4b (diff)
parent8251a2d73f077d3358ea88dbb6b7971a57f72d40 (diff)
downloadrust-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.rs2
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.