Merge pull request #2582 from joaquinelio/patch-4

typo it's
This commit is contained in:
Ilya Kantor 2021-05-13 13:03:18 +03:00 committed by GitHub
commit 243a0b1fda
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.
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.