diff --git a/spec.bs b/spec.bs
index fd53820..276c4dd 100644
--- a/spec.bs
+++ b/spec.bs
@@ -167,7 +167,7 @@ A {{StorageAccessHandle}} object has an associated {{StorageAccessTypes}} hasUnpartitionedCookieAccess()
method must run these steps:
-1. Return the invocation of {{Document/hasStorageAccess()}} on |doc|.
+1. Return the result of running {{Document/hasStorageAccess()}} on |doc|.
Note:
Now that {{Document/requestStorageAccess(types)}} can be used to request [=unpartitioned data=] with or without specifically requesting cookies, it must be made clear that {{Document/hasStorageAccess()}} only returns true if [=first-party-site context=] cookies are accessable to the current document.
@@ -215,13 +215,13 @@ The sessionStorage
localStorage
getter steps are:
1. If |this|'s |types|.{{StorageAccessTypes/all}} is `false` and |this|'s |types|.{{StorageAccessTypes/localStorage}} is `false`:
1. Throw an "{{InvalidStateError}}" {{DOMException}}.
-1. Return the invocation of [=html/localStorage=].
+1. Return the result of running [=html/localStorage=].
indexedDB
g
1. If |this|'s |types|.{{StorageAccessTypes/all}} is `false` and |this|'s |types|.{{StorageAccessTypes/indexedDB}} is `false`:
1. Throw an "{{InvalidStateError}}" {{DOMException}}.
-1. Return the invocation of {{WindowOrWorkerGlobalScope/indexedDB}}.
+1. Return the result of running {{WindowOrWorkerGlobalScope/indexedDB}}.
locks
gette
1. If |this|'s |types|.{{StorageAccessTypes/all}} is `false` and |this|'s |types|.{{StorageAccessTypes/locks}} is `false`:
1. Throw an "{{InvalidStateError}}" {{DOMException}}.
-1. Return the invocation of [=/locks=] on {{Navigator}}.
+1. Return the result of running [=/locks=] on {{Navigator}}.
caches
gett
1. If |this|'s |types|.{{StorageAccessTypes/all}} is `false` and |this|'s |types|.{{StorageAccessTypes/caches}} is `false`:
1. Throw an "{{InvalidStateError}}" {{DOMException}}.
-1. Return the invocation of [=/caches=].
+1. Return the result of running [=/caches=].
revokeObjectURL(url)
method must run these steps:
1. If |types|.{{StorageAccessTypes/all}} is `false` and |types|.{{StorageAccessTypes/revokeObjectURL}} is `false`:
1. Throw an "{{InvalidStateError}}" {{DOMException}}.
-1. Return the invocation of [=/revokeObjectURL=] on {{URL}} with |url|.
+1. Return the result of running [=/revokeObjectURL=] on {{URL}} with |url|.