1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-15 22:00:26 +02:00

Fix an English grammatical typo (#386)

This commit is contained in:
Matt Smith
2023-02-10 15:53:27 +01:00
committed by GitHub
parent dd2c38a19d
commit 9fe0b68a2d

View File

@ -12,7 +12,7 @@ fn main() {
page_counts.insert("Pride and Prejudice".to_string(), 303);
if !page_counts.contains_key("Les Misérables") {
println!("We've know about {} books, but not Les Misérables.",
println!("We know about {} books, but not Les Misérables.",
page_counts.len());
}