From 45aee0d25ee3bb5a6935b535974c5e9051580ba8 Mon Sep 17 00:00:00 2001 From: Hollow Man Date: Fri, 20 Nov 2020 22:34:14 +0800 Subject: [PATCH] http: fix typo in comment alredy -> already PR-URL: https://github.com/nodejs/node/pull/36193 Reviewed-By: Gireesh Punathil Reviewed-By: Richard Lau Reviewed-By: Pranshu Srivastava Reviewed-By: Trivikram Kamat Reviewed-By: Colin Ihrig Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: Ricky Zhou <0x19951125@gmail.com> --- lib/_http_server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/_http_server.js b/lib/_http_server.js index e136c26133db49..dbcff03ca53e5d 100644 --- a/lib/_http_server.js +++ b/lib/_http_server.js @@ -769,7 +769,7 @@ function resOnFinish(req, res, socket, state, server) { // Make sure the requestTimeout is cleared before finishing. // This might occur if the application has sent a response - // without consuming the request body, which would have alredy + // without consuming the request body, which would have already // cleared the timer. // clearRequestTimeout can be executed even if the timer is not active, // so this is safe.