From 623e97584c9bb1ce225ece27582d2bf2a42857dd Mon Sep 17 00:00:00 2001 From: WD Snoeijer <88512452+dsnoeijer@users.noreply.github.com> Date: Thu, 13 Oct 2022 23:18:51 +0200 Subject: [PATCH] docs: fix linter errors for web-worker.md (#47766) PR Close #47766 --- aio/content/guide/web-worker.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aio/content/guide/web-worker.md b/aio/content/guide/web-worker.md index 4d5c8324ded..a2ae080122e 100644 --- a/aio/content/guide/web-worker.md +++ b/aio/content/guide/web-worker.md @@ -1,11 +1,11 @@ # Background processing using web workers [Web workers](https://developer.mozilla.org/docs/Web/API/Web_Workers_API) lets you run CPU-intensive computations in a background thread, freeing the main thread to update the user interface. -If you find your application performs a lot of computations, such as generating CAD drawings or doing heavy geometrical calculations, using web workers can help increase your application's performance. +Application's performing a lot of computations, like generating Computer-Aided Design \(CAD\) drawings or doing heavy geometric calculations, can use web workers to increase performance.
-The CLI does not support running Angular itself in a web worker. +The Angular CLI does not support running itself in a web worker.
@@ -60,12 +60,12 @@ The command performs the following actions. -After you generate this initial scaffold, you must refactor your code to use the web worker by sending messages to and from the worker. +After you create this initial scaffold, you must refactor your code to use the web worker by sending messages to and from the worker.
Some environments or platforms, such as `@angular/platform-server` used in [Server-side Rendering](guide/universal), don't support web workers. -To ensure that your application will work in these environments, you must provide a fallback mechanism to perform the computations that the worker would otherwise perform. +To ensure that your application works in these environments, you must provide a fallback mechanism to perform the computations that the worker would otherwise perform.