diff --git a/source/reference/method/db.collection.insertMany.txt b/source/reference/method/db.collection.insertMany.txt index a55b114c9e1..055e4b2c253 100644 --- a/source/reference/method/db.collection.insertMany.txt +++ b/source/reference/method/db.collection.insertMany.txt @@ -203,18 +203,18 @@ Since ``_id: 13`` already exists, the following exception is thrown: BulkWriteError({ "writeErrors" : [ { - "index" : 0, + "index" : 1, "code" : 11000, - "errmsg" : "E11000 duplicate key error collection: restaurant.test index: _id_ dup key: { : 13.0 }", + "errmsg" : "E11000 duplicate key error collection: inventory.products.$_id_ dup key: { : 13.0 }", "op" : { "_id" : 13, - "item" : "envelopes", - "qty" : 60 + "item" : "stamps", + "qty" : 110 } } ], "writeConcernErrors" : [ ], - "nInserted" : 0, + "nInserted" : 1, "nUpserted" : 0, "nMatched" : 0, "nModified" : 0,