From 172ef78b4758c587dfc2d469a2099ed186b1deda Mon Sep 17 00:00:00 2001 From: Peter Kampjes <67612358+peachesontour@users.noreply.github.com> Date: Fri, 18 Sep 2020 14:43:52 -0300 Subject: [PATCH] Update 6-data-storage/03-indexeddb/article.md Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com> --- 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 8ae96383..5aeeceea 100644 --- a/6-data-storage/03-indexeddb/article.md +++ b/6-data-storage/03-indexeddb/article.md @@ -343,7 +343,7 @@ So, in the example above no special call is needed to finish the transaction. Transactions auto-commit principle has an important side effect. We can't insert an async operation like `fetch`, `setTimeout` in the middle of transaction. IndexedDB will not keep the transaction waiting till these are done. -In the code below `request2` in line `(*)` fails, because the transaction is already committed, and can't make any request in it: +In the code below, `request2` in line `(*)` fails, because the transaction is already committed, and can't make any request in it: ```js let request1 = books.add(book);