From f0c9754fb25c178dae449ea8de0cba140e08e865 Mon Sep 17 00:00:00 2001 From: GHXX Date: Sun, 14 Jan 2024 00:55:11 +0100 Subject: [PATCH] fix spelling mistake --- SimpleHttpServer/HttpServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimpleHttpServer/HttpServer.cs b/SimpleHttpServer/HttpServer.cs index bff035f..43634d5 100644 --- a/SimpleHttpServer/HttpServer.cs +++ b/SimpleHttpServer/HttpServer.cs @@ -203,7 +203,7 @@ public sealed class HttpServer { private static async Task HandleDefaultErrorPageAsync(RequestContext ctx, int errorCode) { await ctx.WriteLineToRespAsync($""" -

Oh no, and error occurred!

+

Oh no, an error occurred!

Code: {errorCode}

""");