From c5fca18929e39eaac2cdcbe7a5f66156b6517c48 Mon Sep 17 00:00:00 2001 From: ketanm30 <81371257+ketanm30@users.noreply.github.com> Date: Thu, 25 Mar 2021 20:30:41 +0530 Subject: [PATCH] Sentence Correction at Line 620. (#21880) --- aspnetcore/tutorials/first-mongo-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mongo-app.md b/aspnetcore/tutorials/first-mongo-app.md index 228daea6e3..0d4908143c 100644 --- a/aspnetcore/tutorials/first-mongo-app.md +++ b/aspnetcore/tutorials/first-mongo-app.md @@ -617,7 +617,7 @@ The database is ready. You can start creating the ASP.NET Core web API. The `BookService` class uses the following `MongoDB.Driver` members to perform CRUD operations against the database: -* [MongoClient](https://api.mongodb.com/csharp/current/html/T_MongoDB_Driver_MongoClient.htm): Reads the server instance for performing database operations. The constructor of this class is provided the MongoDB connection string: +* [MongoClient](https://api.mongodb.com/csharp/current/html/T_MongoDB_Driver_MongoClient.htm): Reads the server instance for performing database operations. The constructor of this class is provided with the MongoDB connection string: [!code-csharp[](first-mongo-app/samples/2.x/SampleApp/Services/BookService.cs?name=snippet_BookServiceConstructor&highlight=3)]