aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/indexeddb_api
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-03-18 02:37:24 +0300
committerGitHub <noreply@github.com>2021-03-18 02:37:24 +0300
commit57e0abae4196d5e89486fa87171e12dd14f78584 (patch)
tree2180ef5a575f698475f078e4a05b746a09399b0d /files/ru/web/api/indexeddb_api
parent242f0b78b42992e2e1c961fa81172f364d2be6ca (diff)
downloadtranslated-content-57e0abae4196d5e89486fa87171e12dd14f78584.tar.gz
translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.tar.bz2
translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.zip
Fix various typos (#203)
* Fix various typos * Auto fixes * Apply suggestions from code review Co-authored-by: Artem Shibakov <shibakow@gmail.com> * Apply suggestions from code review Co-authored-by: Artem Shibakov <shibakow@gmail.com> Co-authored-by: Artem Shibakov <shibakow@gmail.com>
Diffstat (limited to 'files/ru/web/api/indexeddb_api')
-rw-r--r--files/ru/web/api/indexeddb_api/using_indexeddb/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/api/indexeddb_api/using_indexeddb/index.html b/files/ru/web/api/indexeddb_api/using_indexeddb/index.html
index 4dd2313af8..7a60703eb9 100644
--- a/files/ru/web/api/indexeddb_api/using_indexeddb/index.html
+++ b/files/ru/web/api/indexeddb_api/using_indexeddb/index.html
@@ -53,7 +53,7 @@ window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || window.ms
<p>Имейте в виду, что  реализации, в которых всё ещё используются префиксы, могут содержать ошибки, быть неполными или следовать устаревшей спецификации. Поэтому их не рекомендуется использовать в ваших рабочих проектах. Предпочтительнее отказаться от таких браузеров, чем получать от них ошибки:</p>
<pre class="brush: js">if (!window.indexedDB) {
- window.alert("Ваш браузер не поддерживат стабильную версию IndexedDB. Такие-то функции будут недоступны");
+ window.alert("Ваш браузер не поддерживает стабильную версию IndexedDB. Такие-то функции будут недоступны");
}
</pre>