From fc7fa4f0f073f61f08b16df602b5e83f61c7b557 Mon Sep 17 00:00:00 2001 From: martincostello Date: Sun, 26 Aug 2018 11:12:54 +0100 Subject: [PATCH] Fix sample typo Fix typo in sample comment. --- samples/HealthChecksSample/LivenessProbeStartup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/HealthChecksSample/LivenessProbeStartup.cs b/samples/HealthChecksSample/LivenessProbeStartup.cs index 3a4078759f..e927412456 100644 --- a/samples/HealthChecksSample/LivenessProbeStartup.cs +++ b/samples/HealthChecksSample/LivenessProbeStartup.cs @@ -50,7 +50,7 @@ namespace HealthChecksSample // The readiness check uses all of the registered health checks (default) app.UseHealthChecks("/health/ready"); - // The liveness check uses an 'identity' health check that always returns healty + // The liveness check uses an 'identity' health check that always returns healthy app.UseHealthChecks("/health/live", new HealthCheckOptions() { // Filters the set of health checks run by this middleware