From c276fc10da69e349cc439a35253ae938773db750 Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Thu, 23 Apr 2026 18:55:13 -0700 Subject: [PATCH] Editorial: fix description of Environment Record GetBindingValue (#3814) --- spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec.html b/spec.html index e7292acb68..7db561c2ce 100644 --- a/spec.html +++ b/spec.html @@ -11087,7 +11087,7 @@

a Global Environment Record _envRec_
description
-
It attempts to change the bound value of the current binding of the identifier whose name is _N_ to the value _V_. If the binding is an immutable binding and _S_ is *true*, a *TypeError* is thrown. A property named _N_ normally already exists but if it does not or is not currently writable, error handling is determined by _S_.
+
It attempts to change the bound value of the current binding of the identifier whose name is _N_ to the value _V_. If the binding is an immutable binding and _S_ is *true*, a *TypeError* is thrown. A binding named _N_ normally already exists but if it does not or is not currently writable, error handling is determined by _S_.
1. Let _DclRec_ be _envRec_.[[DeclarativeRecord]]. @@ -11110,7 +11110,7 @@

a Global Environment Record _envRec_
description
-
It returns the value of its bound identifier whose name is _N_. If the binding is an uninitialized binding throw a *ReferenceError* exception. A property named _N_ normally already exists but if it does not or is not currently writable, error handling is determined by _S_.
+
It returns the value of its bound identifier whose name is _N_. If the binding is an uninitialized binding, it will throw a *ReferenceError* exception. A binding named _N_ normally already exists but if it does not, error handling is determined by _S_.
1. Let _DclRec_ be _envRec_.[[DeclarativeRecord]].