Skip to content
This repository was archived by the owner on Jan 14, 2022. It is now read-only.

Commit af7ae3f

Browse files
authored
Merge pull request #41 from tonybolzan/spell
fix spelling cache
2 parents d21d9d6 + 614b9c9 commit af7ae3f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

assets/serviceWorkers/serviceWorker1/pwabuilder-sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//This is the "Offline page" service worker
22

3-
//Install stage sets up the offline page in the cahche and opens a new cache
3+
//Install stage sets up the offline page in the cache and opens a new cache
44
self.addEventListener('install', function(event) {
55
var offlinePage = new Request('offline.html');
66
event.waitUntil(

assets/serviceWorkers/serviceWorker2/pwabuilder-sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//This is the "Offline copy of pages" service worker
22

3-
//Install stage sets up the index page (home page) in the cahche and opens a new cache
3+
//Install stage sets up the index page (home page) in the cache and opens a new cache
44
self.addEventListener('install', function(event) {
55
var indexPage = new Request('index.html');
66
event.waitUntil(

assets/serviceWorkers/serviceWorker3/pwabuilder-sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//This is the service worker with the combined offline experience (Offline page + Offline copy of pages)
22

3-
//Install stage sets up the offline page in the cahche and opens a new cache
3+
//Install stage sets up the offline page in the cache and opens a new cache
44
self.addEventListener('install', function(event) {
55
event.waitUntil(preLoad());
66
});

assets/serviceWorkers/serviceWorker4/pwabuilder-sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ function update(request) {
5959
}
6060

6161
function fromServer(request){
62-
//this is the fallback if it is not in the cahche to go to the server and get it
62+
//this is the fallback if it is not in the cache to go to the server and get it
6363
return fetch(request).then(function(response){ return response})
6464
}

0 commit comments

Comments
 (0)