Rollup merge of #39662 - Henning-K:patch-1, r=frewsxcv

Fixes #39661

Clarifies the potential ambiguity.
This commit is contained in:
Guillaume Gomez 2017-02-12 19:16:29 +01:00 committed by GitHub
commit 747b9e590f

View File

@ -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.