about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHenning Kowalk <Henning-K@users.noreply.github.com>2017-02-09 00:44:36 +0100
committerGitHub <noreply@github.com>2017-02-09 00:44:36 +0100
commit51ef003deaf2ac82edeeb03a98630330b069817a (patch)
treebd6c539359e282a5b55f48f5fd427ff71709ceba
parent29dece1c8bbebf7ae8034ef0826b119281730937 (diff)
downloadrust-51ef003deaf2ac82edeeb03a98630330b069817a.tar.gz
rust-51ef003deaf2ac82edeeb03a98630330b069817a.zip
Fixed #39661
Clarified potential ambiguity.
-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..4fae9fcb51c 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 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.