From 33fae9cdc9838ffc7890db7f08772012faa0d9b9 Mon Sep 17 00:00:00 2001 From: Oshchenkov Date: Wed, 2 Oct 2019 12:37:40 +0300 Subject: [PATCH] typo sTomething - > something --- 6-data-storage/03-indexeddb/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-data-storage/03-indexeddb/article.md b/6-data-storage/03-indexeddb/article.md index f00beda3..acf5a9d1 100644 --- a/6-data-storage/03-indexeddb/article.md +++ b/6-data-storage/03-indexeddb/article.md @@ -158,7 +158,7 @@ Such update collision happens rarely, but we should at least have some handling ## Object store -To store stomething in IndexedDB, we need an *object store*. +To store something in IndexedDB, we need an *object store*. An object store is a core concept of IndexedDB. Counterparts in other databases are called "tables" or "collections". It's where the data is stored. A database may have multiple stores: one for users, another one for goods, etc.