From d998a370fd387da6103cd1aa2a43533dcd7bb86a Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 19 Mar 2019 13:18:12 -0400 Subject: [PATCH] typo: Double word "the" (#11589) --- aspnetcore/fundamentals/index.md | 2 +- aspnetcore/host-and-deploy/health-checks.md | 2 +- aspnetcore/security/authentication/identity.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aspnetcore/fundamentals/index.md b/aspnetcore/fundamentals/index.md index abec96f97f..938eda7a19 100644 --- a/aspnetcore/fundamentals/index.md +++ b/aspnetcore/fundamentals/index.md @@ -69,7 +69,7 @@ For more information, see [Middleware](xref:fundamentals/middleware/index). ## The host -An ASP.NET Core app builds a *host* on startup. The host is an object that encapsulates all of the the app's resources, such as: +An ASP.NET Core app builds a *host* on startup. The host is an object that encapsulates all of the app's resources, such as: * An HTTP server implementation * Middleware components diff --git a/aspnetcore/host-and-deploy/health-checks.md b/aspnetcore/host-and-deploy/health-checks.md index d7ea507af5..acf0d42728 100644 --- a/aspnetcore/host-and-deploy/health-checks.md +++ b/aspnetcore/host-and-deploy/health-checks.md @@ -334,7 +334,7 @@ In the sample app, `UseHealthChecks` adds the Health Check Middleware in `Startu [!code-csharp[](health-checks/samples/2.x/HealthChecksSample/DbContextHealthStartup.cs?name=snippet_Configure)] -To run the `DbContext` probe scenario using the sample app, confirm that the database specified by the the connection string doesn't exist in the SQL Server instance. If the database exists, delete it. +To run the `DbContext` probe scenario using the sample app, confirm that the database specified by the connection string doesn't exist in the SQL Server instance. If the database exists, delete it. Execute the following command from the project's folder in a command shell: diff --git a/aspnetcore/security/authentication/identity.md b/aspnetcore/security/authentication/identity.md index c06b817954..f588bf0a4a 100644 --- a/aspnetcore/security/authentication/identity.md +++ b/aspnetcore/security/authentication/identity.md @@ -109,7 +109,7 @@ For more information, see the [IdentityOptions Class](/dotnet/api/microsoft.aspn ## Scaffold Register, Login, and LogOut -Follow the [Scaffold identity into a Razor project with authorization](xref:security/authentication/scaffold-identity#scaffold-identity-into-a-razor-project-with-authorization) instructions to generate the the code shown in this section. +Follow the [Scaffold identity into a Razor project with authorization](xref:security/authentication/scaffold-identity#scaffold-identity-into-a-razor-project-with-authorization) instructions to generate the code shown in this section. # [Visual Studio](#tab/visual-studio)