diff options
| author | Seo Sanghyeon <sanxiyn@gmail.com> | 2016-06-10 21:16:46 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-10 21:16:46 +0900 |
| commit | e58c967c86779a1b2a87711bcf3d0bcdc233b2c8 (patch) | |
| tree | cf13ebe871be452af33be6f69b6f544685588c21 /src/libcollections | |
| parent | 71b05c260816efcb5e5c483d1494bb4dfa39e0a5 (diff) | |
| parent | 8180a910f9957a8b9d192a1a7f129dcc459f0d43 (diff) | |
| download | rust-e58c967c86779a1b2a87711bcf3d0bcdc233b2c8.tar.gz rust-e58c967c86779a1b2a87711bcf3d0bcdc233b2c8.zip | |
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".
Diffstat (limited to 'src/libcollections')
| -rw-r--r-- | src/libcollections/btree/map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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."); |
