diff --git a/aio/content/guide/service-worker-getting-started.md b/aio/content/guide/service-worker-getting-started.md index dde674bb8a..4ab2d0583e 100644 --- a/aio/content/guide/service-worker-getting-started.md +++ b/aio/content/guide/service-worker-getting-started.md @@ -1,7 +1,7 @@ # Getting started with service workers -This document explains how to enable Angular service worker support in projects that you created with the [Angular CLI](cli). It then uses a simple example to show you a service worker in action, demonstrating loading and basic caching. +This document explains how to enable Angular service worker support in projects that you created with the [Angular CLI](cli). It then uses an example to show you a service worker in action, demonstrating loading and basic caching. #### Prerequisites @@ -10,7 +10,7 @@ A basic understanding of the information in [Introduction to Angular service wor ## Adding a service worker to your project -To set up the Angular service worker in your project, use the CLI command `ng add @angular/pwa`. It takes care of configuring your app to use service workers by adding the `service-worker` package along +To set up the Angular service worker in your project, use the CLI command `ng add @angular/pwa`. It takes care of configuring your application to use service workers by adding the `service-worker` package along with setting up the necessary support files. ```sh @@ -21,7 +21,7 @@ The above command completes the following actions: 1. Adds the `@angular/service-worker` package to your project. 2. Enables service worker build support in the CLI. -3. Imports and registers the service worker in the app module. +3. Imports and registers the service worker in the application module. 4. Updates the `index.html` file: * Includes a link to add the `manifest.webmanifest` file. * Adds meta tags for `theme-color`. @@ -62,7 +62,7 @@ With the server running, you can point your browser at http://localhost:8080/. Y