about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-02-12 18:16:54 +0000
committerbors <bors@rust-lang.org>2017-02-12 18:16:54 +0000
commit81bd2675eaf96396e363d63aa068b0a462ec5a6d (patch)
treebbda1dd0521dc5015f05037de674d5bb312b598f /src/libstd
parent282fa87b55521ed378ba7bc81182d38299f5bc1a (diff)
parent2f3dc95778861b26c80e99cfc1d7147f047974eb (diff)
downloadrust-81bd2675eaf96396e363d63aa068b0a462ec5a6d.tar.gz
rust-81bd2675eaf96396e363d63aa068b0a462ec5a6d.zip
Auto merge of #39769 - GuillaumeGomez:rollup, r=GuillaumeGomez
Rollup of 7 pull requests

- Successful merges: #39654, #39662, #39697, #39740, #39743, #39756, #39760
- Failed merges:
Diffstat (limited to 'src/libstd')
-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.