From 41af84384c40dcaea3894d0685cff0ffb65d9e0c Mon Sep 17 00:00:00 2001 From: simon adler Date: Wed, 9 Jan 2019 16:52:58 -0600 Subject: [PATCH] Update index.md (#26599) changed first sentence from "Service Worker is a script that works on browser background without user interaction independently." to "A Service Worker is a script that works in the browser background without user interaction independently." --- guide/english/progressive-web-apps/service-workers/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/progressive-web-apps/service-workers/index.md b/guide/english/progressive-web-apps/service-workers/index.md index 4095877419..f98ed6a2a6 100644 --- a/guide/english/progressive-web-apps/service-workers/index.md +++ b/guide/english/progressive-web-apps/service-workers/index.md @@ -3,7 +3,7 @@ title: Service Workers --- ## Service Workers -Service Worker is a script that works on browser background without user interaction independently. Also, It resembles a proxy that works on the user side. With this script, you can track network traffic of the page, manage push notifications and develop “offline first” web applications with Cache API. +A Service Worker is a script that works in the browser background without user interaction independently. Also, It resembles a proxy that works on the user side. With this script, you can track network traffic of the page, manage push notifications and develop “offline first” web applications with Cache API. ### What can we do with Service Worker?