aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/cache
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/cache')
-rw-r--r--files/ru/web/api/cache/addall/index.html2
-rw-r--r--files/ru/web/api/cache/index.html2
-rw-r--r--files/ru/web/api/cache/matchall/index.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/cache/addall/index.html b/files/ru/web/api/cache/addall/index.html
index 8b89d4964a..094912bdeb 100644
--- a/files/ru/web/api/cache/addall/index.html
+++ b/files/ru/web/api/cache/addall/index.html
@@ -24,7 +24,7 @@ translation_of: Web/API/Cache/addAll
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="brush: js">cache.addAll(requests[]).then(function() {
- //запросы были дабавлены в кеш
+ //запросы были добавлены в кеш
});
</pre>
diff --git a/files/ru/web/api/cache/index.html b/files/ru/web/api/cache/index.html
index fa7ddcc6ca..af46922d41 100644
--- a/files/ru/web/api/cache/index.html
+++ b/files/ru/web/api/cache/index.html
@@ -76,7 +76,7 @@ self.addEventListener('activate', function(event) {
return CURRENT_CACHES[key];
});
- // Автивный воркер не будет рассматриваться как активированный, пока promise не разрешится успешно.
+ // Активный воркер не будет рассматриваться как активированный, пока promise не разрешится успешно.
event.waitUntil(
caches.keys().then(function(cacheNames) {
return Promise.all(
diff --git a/files/ru/web/api/cache/matchall/index.html b/files/ru/web/api/cache/matchall/index.html
index 1b2ff77253..4050dddd8f 100644
--- a/files/ru/web/api/cache/matchall/index.html
+++ b/files/ru/web/api/cache/matchall/index.html
@@ -10,7 +10,7 @@ translation_of: Web/API/Cache/matchAll
<h2 id="Синтаксис">Синтаксис</h2>
<pre class="brush: js">cache.matchAll(request,{options}).then(function(response) {
- //сделать что-ниьудь с массивом ответов
+ // сделать что-нибудь с массивом ответов
});
</pre>