From e0f9aec869f7f11498496e5a8fe866c33ab7def2 Mon Sep 17 00:00:00 2001 From: ruslan528 <42209699+ruslan528@users.noreply.github.com> Date: Wed, 23 Mar 2022 21:57:16 +0300 Subject: [PATCH] fix text error (#25400) --- aspnetcore/host-and-deploy/health-checks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/host-and-deploy/health-checks.md b/aspnetcore/host-and-deploy/health-checks.md index db43068c0c..330a16e9f0 100644 --- a/aspnetcore/host-and-deploy/health-checks.md +++ b/aspnetcore/host-and-deploy/health-checks.md @@ -45,7 +45,7 @@ The following example creates a health check endpoint at `/healthz`: HEALTHCHECK CMD curl --fail http://localhost:5000/healthz || exit ``` -The preceding example ues `curl` to make a HTTP request to the health check endpoint at `/healthz`. `curl` isn't included in the .NET Linux container images, but it can be added by installing the required package in the Dockerfile. Containers that use images based on Alpine Linux can use the included `wget` in place of `curl`. +The preceding example uses `curl` to make a HTTP request to the health check endpoint at `/healthz`. `curl` isn't included in the .NET Linux container images, but it can be added by installing the required package in the Dockerfile. Containers that use images based on Alpine Linux can use the included `wget` in place of `curl`. ## Create health checks