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 529ff1f..e69f833 100644 --- a/docs/src/content/docs/challenges/angular/8-pipe-pure.md +++ b/docs/src/content/docs/challenges/angular/8-pipe-pure.md @@ -19,7 +19,7 @@ By default a pipe is pure, you should be aware that setting `pure` to false is p :::note 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. +A **impure** pipe is called every change detection cycle. ::: There are some useful predefined pipes like the DatePipe, UpperCasePipe and CurrencyPipe. To learn more about pipes in Angular, check the API documentation [here](https://angular.io/guide/pipes). 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 350a6d2..6f45766 100644 --- a/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md +++ b/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md @@ -19,7 +19,7 @@ By default a pipe is pure, you should be aware that setting `pure` to false is p :::note 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. +A **impure** pipe is called every change detection cycle. ::: There are some useful predefined pipes like the DatePipe, UpperCasePipe and CurrencyPipe. To learn more about pipes in Angular, check the API documentation [here](https://angular.io/guide/pipes).