Skip to content

Commit e8b95d6

Browse files
committed
Added Vyacheslav Stroy as a contributor.
1 parent 6c7b2d5 commit e8b95d6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ var collection = database.GetCollection<BsonDocument>("bar");
2323
await collection.InsertOneAsync(new BsonDocument("Name", "Jack"));
2424

2525
var list = await collection.Find(new BsonDocument("Name", "Jack"))
26-
.ToListAsync();
26+
.ToListAsync();
2727

2828
foreach(var document in list)
2929
{
30-
Console.WriteLine(document["Name"]);
30+
Console.WriteLine(document["Name"]);
3131
}
3232
```
3333

@@ -54,11 +54,11 @@ var collection = database.GetCollection<Person>("bar");
5454
await collection.InsertOneAsync(new Person { Name = "Jack" });
5555

5656
var list = await collection.Find(x => x.Name == "Jack")
57-
.ToListAsync();
57+
.ToListAsync();
5858

5959
foreach(var person in list)
6060
{
61-
Console.WriteLine(person.Name);
61+
Console.WriteLine(person.Name);
6262
}
6363
```
6464

@@ -115,6 +115,7 @@ Please see our [guidelines](CONTRIBUTING.md) for contributing to the driver.
115115
* Alexey Skalozub [email protected]
116116
* Pete Smith [email protected]
117117
* staywellandy https://github.com/staywellandy
118+
* Vyacheslav Stroy https://github.com/kreig
118119
119120

120121
If you have contributed and we have neglected to add you to this list please contact one of the maintainers to be added to the list (with apologies).

0 commit comments

Comments
 (0)