diff --git a/docs/src/content/docs/challenges/angular/10-pipe-utility.md b/docs/src/content/docs/challenges/angular/10-pipe-utility.md index 6e13733..f356ec0 100644 --- a/docs/src/content/docs/challenges/angular/10-pipe-utility.md +++ b/docs/src/content/docs/challenges/angular/10-pipe-utility.md @@ -17,7 +17,7 @@ Pipes are designed to be efficient and optimized for performance. They use chang By default a pipe is pure, you should be aware that setting `pure` to false is prone to be inefficient, because it increases the amount of rerenders. :::note -A **pure** pipe is only called mwhen the value changes. +A **pure** pipe is only called when the value changes.\ A **impure** pipe is called for every change detection cycle no matter whether the value changes. ::: diff --git a/docs/src/content/docs/challenges/angular/8-pipe-pure.md b/docs/src/content/docs/challenges/angular/8-pipe-pure.md index 6e5b11a..529ff1f 100644 --- a/docs/src/content/docs/challenges/angular/8-pipe-pure.md +++ b/docs/src/content/docs/challenges/angular/8-pipe-pure.md @@ -18,7 +18,7 @@ Pipes are designed to be efficient and optimized for performance. They use chang By default a pipe is pure, you should be aware that setting `pure` to false is prone to be inefficient, because it increases the amount of rerenders. :::note -A **pure** pipe is only called mwhen the value changes. +A **pure** pipe is only called when the value changes.\ A **impure** pipe is called for every change detection cycle no matter whether the value changes. ::: diff --git a/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md b/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md index 9c97bcd..350a6d2 100644 --- a/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md +++ b/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md @@ -18,7 +18,7 @@ Pipes are designed to be efficient and optimized for performance. They use chang By default a pipe is pure, you should be aware that setting `pure` to false is prone to be inefficient, because it increases the amount of rerenders. :::note -A **pure** pipe is only called mwhen the value changes. +A **pure** pipe is only called when the value changes.\ A **impure** pipe is called for every change detection cycle no matter whether the value changes. :::