From: Seo Sanghyeon Date: Fri, 10 Jun 2016 12:16:46 +0000 (+0900) Subject: Rollup merge of #34175 - rwz:patch-2, r=alexcrichton X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=e58c967c86779a1b2a87711bcf3d0bcdc233b2c8;hp=71b05c260816efcb5e5c483d1494bb4dfa39e0a5;p=rust.git 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". --- diff --git a/src/libcollections/btree/map.rs b/src/libcollections/btree/map.rs index 248240a7de8..26e71d20833 100644 --- a/src/libcollections/btree/map.rs +++ b/src/libcollections/btree/map.rs @@ -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.");