Skip to content

Commit f9b93d5

Browse files
Badkoubeheijyemin
authored andcommitted
Fix typo in UpdateMany section (#363)
1 parent 1a4742b commit f9b93d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Docs/reference/content/getting_started/quick_tour.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ var filter = Builders<BsonDocument>.Filter.Lt("i", 100);
316316
var update = Builders<BsonDocument>.Update.Inc("i", 100);
317317
```
318318
```csharp
319-
var result = collection.UpdateOne(filter, update);
319+
var result = collection.UpdateMany(filter, update);
320320

321321
if (result.IsModifiedCountAvailable)
322322
{

0 commit comments

Comments
 (0)