From 549c283f882ccfe283ff9bfdf98e4efcc163bdf2 Mon Sep 17 00:00:00 2001 From: Sven Brodny Date: Fri, 16 Feb 2024 22:15:49 +0100 Subject: [PATCH] docs(pipes): fix typo & add linebreak --- docs/src/content/docs/challenges/angular/10-pipe-utility.md | 2 +- docs/src/content/docs/challenges/angular/8-pipe-pure.md | 2 +- docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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. :::