Update CustomWriterStartup.cs

Fix a misleading comment in sample
This commit is contained in:
Ryan Nowak 2018-08-06 16:44:54 -07:00 committed by GitHub
parent 602faf5baa
commit 8ec69456ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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,
});