Fix broken doc test

This commit is contained in:
Corey Farwell 2018-12-07 14:30:01 -08:00 committed by GitHub
parent 439ecf94e5
commit adfc0667bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {