From 8ec69456ca7afa05e794934361c3417227e2169f Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Mon, 6 Aug 2018 16:44:54 -0700 Subject: [PATCH] Update CustomWriterStartup.cs Fix a misleading comment in sample --- samples/HealthChecksSample/CustomWriterStartup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/HealthChecksSample/CustomWriterStartup.cs b/samples/HealthChecksSample/CustomWriterStartup.cs index 97003068fc..0c3e542b72 100644 --- a/samples/HealthChecksSample/CustomWriterStartup.cs +++ b/samples/HealthChecksSample/CustomWriterStartup.cs @@ -35,7 +35,7 @@ namespace HealthChecksSample // check result in a totally custom way. app.UseHealthChecks("/health", new HealthCheckOptions() { - // This custom writer formats the detailed status as an HTML table. + // This custom writer formats the detailed status as JSON. ResponseWriter = WriteResponse, });