diff --git a/spec.html b/spec.html
index 4f2e1604a9..15dc3dfff5 100644
--- a/spec.html
+++ b/spec.html
@@ -12063,7 +12063,7 @@ <h1>GetNewTarget ( ): an Object or *undefined*</h1>
       <h1>GetGlobalObject ( ): an Object</h1>
       <dl class="header">
         <dt>description</dt>
-        <dd>It returns the global object used by the currently running execution context.</dd>
+        <dd>It returns the global object used by the running execution context.</dd>
       </dl>
       <emu-alg>
         1. Let _currentRealm_ be the current Realm Record.
@@ -48914,7 +48914,7 @@ <h1>
           1. Transfer control from _methodContext_ to _genContext_, passing NormalCompletion(_value_).
           1. NOTE: This step is reached only when control is transferred back to _methodContext_, which might not happen.
           1. Let _result_ be the Completion Record passed when control was transferred back to _methodContext_.
-          1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the currently running execution context.
+          1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the running execution context.
           1. Return ? _result_.
         </emu-alg>
       </emu-clause>
@@ -48947,7 +48947,7 @@ <h1>
           1. Transfer control from _methodContext_ to _genContext_, passing _abruptCompletion_.
           1. NOTE: This step is reached only when control is transferred back to _methodContext_, which might not happen.
           1. Let _result_ be the Completion Record passed when control was transferred back to _methodContext_.
-          1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the currently running execution context.
+          1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the running execution context.
           1. Return ? _result_.
         </emu-alg>
       </emu-clause>
@@ -49328,7 +49328,7 @@ <h1>
           1. NOTE: This step is reached only when control is transferred back to _callerContext_, which might not happen.
           1. Let _result_ be the Completion Record passed when control was transferred back to _callerContext_.
           1. Assert: _result_ is never an abrupt completion.
-          1. Assert: _genContext_ has already been removed from the execution context stack and _callerContext_ is the currently running execution context.
+          1. Assert: _genContext_ has already been removed from the execution context stack and _callerContext_ is the running execution context.
           1. Return ~unused~.
         </emu-alg>
       </emu-clause>
@@ -49644,7 +49644,7 @@ <h1>
           1. Transfer control from _runningContext_ to _asyncContext_, passing NormalCompletion(~unused~).
           1. NOTE: This step is reached only when control is transferred back to _runningContext_, which might not happen.
           1. Let _result_ be the Completion Record passed when control was transferred back to _runningContext_.
-          1. Assert: _asyncContext_ has already been removed from the execution context stack and _runningContext_ is the currently running execution context.
+          1. Assert: _asyncContext_ has already been removed from the execution context stack and _runningContext_ is the running execution context.
           1. Assert: _result_ is a normal completion with a value of ~unused~. The possible sources of this value are Await or, if the async function doesn't await anything, step <emu-xref href="#step-asyncblockstart-return-undefined"></emu-xref> above.
           1. Return ~unused~.
         </emu-alg>
@@ -49666,7 +49666,7 @@ <h1>
             1. Push _asyncContext_ onto the execution context stack; _asyncContext_ is now the running execution context.
             1. Transfer control from _prevContext_ to _asyncContext_, passing NormalCompletion(_v_).
             1. NOTE: This step is reached only when control is transferred back to _prevContext_, which might not happen.
-            1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the currently running execution context.
+            1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the running execution context.
             1. Return *undefined*.
           1. Let _onFulfilled_ be CreateBuiltinFunction(_fulfilledClosure_, 1, *""*, « »).
           1. Let _rejectedClosure_ be a new Abstract Closure with parameters (_reason_) that captures _asyncContext_ and performs the following steps when called:
@@ -49674,7 +49674,7 @@ <h1>
             1. Push _asyncContext_ onto the execution context stack; _asyncContext_ is now the running execution context.
             1. Transfer control from _prevContext_ to _asyncContext_, passing ThrowCompletion(_reason_).
             1. NOTE: This step is reached only when control is transferred back to _prevContext_, which might not happen.
-            1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the currently running execution context.
+            1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the running execution context.
             1. Return *undefined*.
           1. Let _onRejected_ be CreateBuiltinFunction(_rejectedClosure_, 1, *""*, « »).
           1. Perform PerformPromiseThen(_promise_, _onFulfilled_, _onRejected_).