diff --git a/spec.html b/spec.html
index 6527368adf..9988c43da5 100644
--- a/spec.html
+++ b/spec.html
@@ -11105,7 +11105,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]].
@@ -11128,7 +11128,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]].