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
+1 -1
View File
@@ -68,7 +68,7 @@
/// // 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.");