Skip to content

Commit ee5fae7

Browse files
committed
docs(pipes): change impure pipe description
1 parent 890f5cc commit ee5fae7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/content/docs/challenges/angular/8-pipe-pure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By default a pipe is pure, you should be aware that setting `pure` to false is p
1919

2020
:::note
2121
A **pure** pipe is only called when the value changes.\
22-
A **impure** pipe is called for every change detection cycle no matter whether the value changes.
22+
A **impure** pipe is called every change detection cycle.
2323
:::
2424

2525
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).

docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By default a pipe is pure, you should be aware that setting `pure` to false is p
1919

2020
:::note
2121
A **pure** pipe is only called when the value changes.\
22-
A **impure** pipe is called for every change detection cycle no matter whether the value changes.
22+
A **impure** pipe is called every change detection cycle.
2323
:::
2424

2525
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).

0 commit comments

Comments
 (0)