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:
Pavel Pravosud 2016-06-08 20:32:24 -07:00
parent 34505e2228
commit 8180a910f9

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.");