We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85f7bd3 commit 57184c6Copy full SHA for 57184c6
source/includes/fundamentals/code-snippets/crud/insert.rs
@@ -73,7 +73,7 @@ async fn main() -> mongodb::error::Result<()> {
73
let docs = vec![
74
Book { _id: 1, title: "Where the Wild Things Are".to_string(), author: "".to_string() },
75
Book { _id: 2, title: "The Very Hungry Caterpillar".to_string(), author: "".to_string() },
76
- Book { _id: 4, title: "Blueberries for Sal".to_string(), author: "".to_string() },
+ Book { _id: 1, title: "Blueberries for Sal".to_string(), author: "".to_string() },
77
Book { _id: 3, title: "Goodnight Moon".to_string(), author: "".to_string() }
78
];
79
0 commit comments