about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2018-12-07 14:30:01 -0800
committerGitHub <noreply@github.com>2018-12-07 14:30:01 -0800
commitadfc0667bc0e452aed0f5e65452c00f775b48ef4 (patch)
tree22a822ee806dc19eb732c27465e9f03281fae84e /src/liballoc
parent439ecf94e56ec94b81b678554a0192cc7e3f3a19 (diff)
downloadrust-adfc0667bc0e452aed0f5e65452c00f775b48ef4.tar.gz
rust-adfc0667bc0e452aed0f5e65452c00f775b48ef4.zip
Fix broken doc test
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 {