diff --git a/lib/internal/modules/esm/fetch_module.js b/lib/internal/modules/esm/fetch_module.js index 516a1a93b2f05e3..42aeba96a9b4a18 100644 --- a/lib/internal/modules/esm/fetch_module.js +++ b/lib/internal/modules/esm/fetch_module.js @@ -47,7 +47,7 @@ const cacheForGET = new SafeMap(); /** @type {import('https').Agent} The Cached HTTP Agent for **secure** HTTP requests. */ let HTTPSAgent; /** - * Make a **secure** HTTP GET request (handling agent setup if needed, caching the agent to avoid + * Make a HTTPs GET request (handling agent setup if needed, caching the agent to avoid * redudant instantiations). * @param {Parameters[0]} input - The URI to fetch. * @param {Parameters[1]} options - See https.get() options. @@ -66,10 +66,10 @@ function HTTPSGet(input, options) { /** @type {import('https').Agent} The Cached HTTP Agent for **insecure** HTTP requests. */ let HTTPAgent; /** - * Make a **insecure** HTTP GET request (handling agent setup if needed, caching the agent to avoid + * Make a HTTP GET request (handling agent setup if needed, caching the agent to avoid * redudant instantiations). - * @param {Parameters[0]} input - The URI to fetch. - * @param {Parameters[1]} options - See http.get() options. + * @param {Parameters[0]} input - The URI to fetch. + * @param {Parameters[1]} options - See http.get() options. */ function HTTPGet(input, options) { const http = require('http'); // [1]