Change 'create' to 'delete' in message

This commit is contained in:
Luke Latham 2018-10-20 11:24:50 -05:00 committed by Ryan Nowak
parent f0994e5972
commit b3db95eb2d
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ namespace HealthChecksSample
{
await context.Response.WriteAsync("Go to /health to see the health status\n");
await context.Response.WriteAsync("Go to /createdatabase to create the database\n");
await context.Response.WriteAsync("Go to /deletedatabase to create the database\n");
await context.Response.WriteAsync("Go to /deletedatabase to delete the database\n");
});
}
}