From 890f5cc430e0a43b14ea2dd77f7620751150baa9 Mon Sep 17 00:00:00 2001 From: Sven Brodny Date: Fri, 16 Feb 2024 22:23:32 +0100 Subject: [PATCH] docs(pipe-utility): change impure pipe description --- docs/src/content/docs/challenges/angular/10-pipe-utility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 f356ec0..24e469d 100644 --- a/docs/src/content/docs/challenges/angular/10-pipe-utility.md +++ b/docs/src/content/docs/challenges/angular/10-pipe-utility.md @@ -18,7 +18,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).