about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/collections/btree/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/collections/btree/map.rs b/src/liballoc/collections/btree/map.rs
index a7d40f8776f..952f36c0ed4 100644
--- a/src/liballoc/collections/btree/map.rs
+++ b/src/liballoc/collections/btree/map.rs
@@ -98,7 +98,7 @@ use self::Entry::*;
 /// }
 ///
 /// // Look up the value for a key (will panic if the key is not found).
-/// println!("Review for Jane: {}", movie_reviews["Pride and Prejudice"]);
+/// println!("Movie review: {}", movie_reviews["Office Space"]);
 ///
 /// // iterate over everything.
 /// for (movie, review) in &movie_reviews {