Rollup merge of #34175 - rwz:patch-2, r=alexcrichton

Fix BTreeMap example typo

The whole example is made around movies reviews, but that one line says "review some books".
This commit is contained in:
Seo Sanghyeon 2016-06-10 21:16:46 +09:00 committed by GitHub
commit e58c967c86

View File

@ -68,7 +68,7 @@ use self::Entry::*;
/// // would be `BTreeMap<&str, &str>` in this example).
/// let mut movie_reviews = BTreeMap::new();
///
/// // review some books.
/// // review some movies.
/// movie_reviews.insert("Office Space", "Deals with real issues in the workplace.");
/// movie_reviews.insert("Pulp Fiction", "Masterpiece.");
/// movie_reviews.insert("The Godfather", "Very enjoyable.");