typo it's

This commit is contained in:
joaquinelio 2021-04-18 06:28:56 -03:00 committed by GitHub
parent 870a88c2f1
commit 7d624ef828
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ Unlike server-side databases, IndexedDB is client-side, the data is stored in th
If the local database version is less than specified in `open`, then a special event `upgradeneeded` is triggered, and we can compare versions and upgrade data structures as needed. If the local database version is less than specified in `open`, then a special event `upgradeneeded` is triggered, and we can compare versions and upgrade data structures as needed.
The `upgradeneeded` event also triggers when the database doesn't yet exist (technically, it's version is `0`), so we can perform the initialization. The `upgradeneeded` event also triggers when the database doesn't yet exist (technically, its version is `0`), so we can perform the initialization.
Let's say we published the first version of our app. Let's say we published the first version of our app.