Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek-shanthkumar committed Oct 10, 2024
1 parent 0c09c71 commit 6989130
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1869,8 +1869,8 @@ usage.
<tr>
<td>{{NotReadableError}}</td>
<td>
The operation failed because the file(s) containing the requested
data could not be read.
The operation failed because the underlying storage containing
the requested data could not be read.
</td>
</tr>
<tr>
Expand Down Expand Up @@ -1900,7 +1900,7 @@ usage.
<td>{{UnknownError}}</td>
<td>
The operation failed for transient reasons unrelated to the
database itself and not covered by any other error.
database itself or not covered by any other error.
</td>
</tr>
<tr>
Expand Down Expand Up @@ -5643,6 +5643,9 @@ To <dfn>store a record into an object store</dfn> with
To <dfn>retrieve a value from an object store</dfn> with
|targetRealm|, |store| and |range|, run these steps:

NOTE:
May return a {{DOMException}} if an error occurs while running these steps.

1. Let |record| be the first [=object-store/record=] in |store|'s
[=object-store/list of records=] whose [=/key=] is [=in=] |range|, if
any.
Expand All @@ -5662,6 +5665,9 @@ To <dfn>retrieve a value from an object store</dfn> with
To <dfn>retrieve multiple values from an object
store</dfn> with |targetRealm|, |store|, |range| and optional |count|, run these steps:

NOTE:
May return a {{DOMException}} if an error occurs while running these steps.

1. If |count| is not given or is 0 (zero), let |count| be infinity.

1. Let |records| be a [=/list=] containing the first |count| [=object-store/records=]
Expand Down

0 comments on commit 6989130

Please sign in to comment.