Skip to content

Commit 922170b

Browse files
authored
thee -> the
1 parent a63d623 commit 922170b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

6-data-storage/03-indexeddb/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ To do an upgrade, there are two main ways:
142142
1. We can compare versions and run per-version operations.
143143
2. Or we can get a list of existing object stores as `db.objectStoreNames`. That object is a [DOMStringList](https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#domstringlist), and it provides `contains(name)` method to check for the existance. And then we can do updates depending on what exists.
144144

145-
Here's the demo of thee second approach:
145+
Here's the demo of the second approach:
146146

147147
```js
148148
let openRequest = indexedDB.open("db", 1);

0 commit comments

Comments
 (0)