From 010ecb2e4d1cf6694a54554e6b924f975540de0f Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Tue, 12 Dec 2023 13:01:43 -0800 Subject: [PATCH] Editorial: Update a variable with set, not let (#415) Per https://infra.spec.whatwg.org/#variables --- index.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.bs b/index.bs index 83a4c13..d5da422 100644 --- a/index.bs +++ b/index.bs @@ -1561,9 +1561,9 @@ be updated. 1. Let |value| be the [=key/value=] of |key|. - 1. Let |value| be the minimum of |value| and 253 (9007199254740992). + 1. Set |value| to the minimum of |value| and 253 (9007199254740992). - 1. Let |value| be the largest integer not greater than |value|. + 1. Set |value| to the largest integer not greater than |value|. 1. Let |generator| be |store|'s [=key generator=].