Skip to content

Commit 314fd06

Browse files
Typos
Co-authored-by: Ms2ger <[email protected]>
1 parent 4e5a1a7 commit 314fd06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/language/module-code/top-level-await/fulfillment-order.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const importsP = Promise.all([
4444
import("./fulfillment-order_b_FIXTURE.js").finally(() => logs.push("B")).catch(() => {}),
4545
]);
4646

47-
// Wait for evaluation of both graphs with entyrpoints in A and B to start before
47+
// Wait for evaluation of both graphs with entry points in A and B to start before
4848
// settling the promise that B is blocked on.
4949
Promise.all([pA_start.promise, pB_start.promise]).then(p1.resolve);
5050

test/language/module-code/top-level-await/rejection-order.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const importsP = Promise.all([
2727
import("./rejection-order_b_FIXTURE.js").finally(() => logs.push("B")).catch(() => {}),
2828
]);
2929

30-
// Wait for evaluation of both graphs with entyrpoints in A and B to start before
30+
// Wait for evaluation of both graphs with entry points in A and B to start before
3131
// rejecting the promise that B is blocked on.
3232
Promise.all([pA_start.promise, pB_start.promise]).then(p1.reject);
3333

0 commit comments

Comments
 (0)