From 24b420527ad3eb548806729f98c77fd8ddb87889 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Tue, 14 Jul 2020 17:33:53 +0300 Subject: [PATCH] docs(service-worker): fix typos in `SwRegistrationOptions` API docs (#38047) PR Close #38047 --- packages/service-worker/src/module.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/service-worker/src/module.ts b/packages/service-worker/src/module.ts index 8a47ce456c..5f147181a6 100644 --- a/packages/service-worker/src/module.ts +++ b/packages/service-worker/src/module.ts @@ -48,12 +48,12 @@ export abstract class SwRegistrationOptions { * with the browser. * * The default behavior of registering once the application stabilizes (i.e. as soon as there are - * no pending micro- and macro-tasks), is designed register the ServiceWorker as soon as possible - * but without affecting the application's first time load. + * no pending micro- and macro-tasks) is designed to register the ServiceWorker as soon as + * possible but without affecting the application's first time load. * * Still, there might be cases where you want more control over when the ServiceWorker is - * registered (e.g. there might be a long-running timeout or polling interval, preventing the app - * to stabilize). The available option are: + * registered (for example, there might be a long-running timeout or polling interval, preventing + * the app from stabilizing). The available option are: * * - `registerWhenStable:`: Register as soon as the application stabilizes (no pending * micro-/macro-tasks) but no later than `` milliseconds. If the app hasn't