From ca6d23f5ef0ef0c342a0c2a9804729e5d737e08f Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Fri, 12 May 2023 13:34:11 +0200 Subject: [PATCH] fix catch block text --- mod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod.ts b/mod.ts index ed036da..50a59e2 100644 --- a/mod.ts +++ b/mod.ts @@ -244,7 +244,7 @@ export class HTTPServer { this.handleNotFound(routeRequest, routeReply, requestEvent); } } catch (_err) { - // Ignore http that where closed before reply was sent + // Ignore http connections that where closed before reply was sent } }