File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
includes/usage-examples/code-snippets Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ exisiting documents in the ``restaurants`` collection. Select the
265
265
.. tab:: Struct
266
266
:tabid: structExample
267
267
268
- The following code uses a struct to define the filter and update multiple document in the ``restuarants`` collection:
268
+ The following code uses a struct to define the filter and update multiple documents in the ``restuarants`` collection:
269
269
270
270
.. io-code-block::
271
271
:copyable: true
@@ -283,7 +283,7 @@ exisiting documents in the ``restaurants`` collection. Select the
283
283
.. tab:: bson.D
284
284
:tabid: bsonDExample
285
285
286
- The following code uses a ``bson.D`` type to define the filter and update multiple document in the ``restuarants`` collection:
286
+ The following code uses a ``bson.D`` type to define the filter and update multiple documents in the ``restuarants`` collection:
287
287
288
288
.. io-code-block::
289
289
:copyable: true
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ type Restaurant struct {
21
21
AverageRating float64 `bson:"avg_rating,omitempty"`
22
22
}
23
23
24
- // Create a filter struct to specify the document to update
24
+ // Create a filter struct to specify the documents to update
25
25
type UpdateManyRestaurantFilter struct {
26
26
Cuisine string `bson:"cuisine"`
27
27
Borough string `bson:"borough"`
You can’t perform that action at this time.
0 commit comments