From 8bfa07c25980ad4ffe3413800783661f68a20a3a Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 20 Oct 2023 13:47:14 +0200 Subject: [PATCH] Editorial: fix typos in HostLoadImportedModule Fixes #9867. --- source | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source b/source index ce4b9b06d6d..95db9d9aacf 100644 --- a/source +++ b/source @@ -107161,14 +107161,14 @@ import "https://example.com/foo/../module2.mjs";
  1. Set destination to loadState.[[Destination]].

  2. -
  3. Set fetchClient loadState.[[FetchClient]].

  4. +
  5. Set fetchClient to loadState.[[FetchClient]].

  • Fetch a single imported module script given url, fetchClient, destination, fetchOptions, - settingsObject fetchReferrer, moduleRequest, and + settingsObject, fetchReferrer, moduleRequest, and onSingleFetchComplete as defined below. If loadState is not undefined and loadState.[[PerformFetch]] is not null, pass loadState.[[PerformFetch]] along as well.

    @@ -107200,8 +107200,8 @@ import "https://example.com/foo/../module2.mjs";
  • Otherwise, set completion to Completion Record { [[Type]]: - normal, [[Value]]: result's record, - [[Target]]: empty }.

  • + normal, [[Value]]: moduleScript's + record, [[Target]]: empty }.

  • Perform FinishLoadingImportedModule(referrer, moduleRequest, payload, completion).