From 0ad1b6b52d05fed5c2837e10ecb878db630a1c3d Mon Sep 17 00:00:00 2001 From: Livia Medeiros <74449973+LiviaMedeiros@users.noreply.github.com> Date: Sun, 10 Jul 2022 04:35:25 +0800 Subject: [PATCH] squash: nit Co-authored-by: Antoine du Hamel --- lib/internal/modules/esm/fetch_module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/modules/esm/fetch_module.js b/lib/internal/modules/esm/fetch_module.js index bcc8c945047526..7638f94b3fe525 100644 --- a/lib/internal/modules/esm/fetch_module.js +++ b/lib/internal/modules/esm/fetch_module.js @@ -149,7 +149,7 @@ function fetchWithRedirects(parsed) { throw err; } // This condition catches all unsupported status codes, including - // 3xx redirection codes without `Location` HTTP header + // 3xx redirection codes without `Location` HTTP header. if (res.statusCode < 200 || res.statusCode >= 300) { throw new ERR_NETWORK_IMPORT_DISALLOWED( res.headers.location,