From d8ed81be36d6a7f5c69ff65b06cf74b16fd4d1e6 Mon Sep 17 00:00:00 2001 From: Sven Brodny Date: Fri, 16 Feb 2024 22:31:36 +0100 Subject: [PATCH] docs(pipes): add information and statement titles (2) --- docs/src/content/docs/challenges/angular/8-pipe-pure.md | 2 ++ 1 file changed, 2 insertions(+) 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 79b58a8..e6871a4 100644 --- a/docs/src/content/docs/challenges/angular/8-pipe-pure.md +++ b/docs/src/content/docs/challenges/angular/8-pipe-pure.md @@ -9,6 +9,8 @@ sidebar: order: 3 --- +## Information + This is the first of three `@Pipe()` challenges, the goal of this series is to master **pipes** in Angular. Pipes are a very powerful way to transform data in your template. The difference between calling a function and a pipe is that pure pipes are memoized. So they won't be recalculated every change detection cycle if their inputs haven't changed.