From 83fdaabebc902633f3e623400b8aa41596812707 Mon Sep 17 00:00:00 2001 From: Anton Kuznetsov Date: Thu, 18 Sep 2025 00:07:09 +0300 Subject: [PATCH] fix: remove incorrect `run` flag from code example causing syntax error --- 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 1acc4c4aae..a83ac3b185 100644 --- a/6-data-storage/03-indexeddb/article.md +++ b/6-data-storage/03-indexeddb/article.md @@ -268,7 +268,7 @@ db.deleteObjectStore('books') Для начала транзакции: -```js run +```js db.transaction(store[, type]); ```