Skip to content

Commit a7d351f

Browse files
0xtoorichsmith558
andauthored
change IndexedDb to IndexedDB (#3660)
Co-authored-by: Stanislav (Stanley) Modrak <[email protected]>
1 parent 19e62af commit a7d351f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ That power is usually excessive for traditional client-server apps. IndexedDB is
1616

1717
The native interface to IndexedDB, described in the specification <https://www.w3.org/TR/IndexedDB>, is event-based.
1818

19-
We can also use `async/await` with the help of a promise-based wrapper, like <https://github.com/jakearchibald/idb>. That's pretty convenient, but the wrapper is not perfect, it can't replace events for all cases. So we'll start with events, and then, after we gain an understanding of IndexedDb, we'll use the wrapper.
19+
We can also use `async/await` with the help of a promise-based wrapper, like <https://github.com/jakearchibald/idb>. That's pretty convenient, but the wrapper is not perfect, it can't replace events for all cases. So we'll start with events, and then, after we gain an understanding of IndexedDB, we'll use the wrapper.
2020

2121
```smart header="Where's the data?"
2222
Technically, the data is usually stored in the visitor's home directory, along with browser settings, extensions, etc.

0 commit comments

Comments
 (0)