From 27655cc2231bd1075e9ad0107b9b8b912dfb2625 Mon Sep 17 00:00:00 2001 From: kabrunko-dev Date: Mon, 19 Feb 2024 08:59:16 -0300 Subject: [PATCH] docs(en): fix typo --- docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 4d75ef1..562c7cf 100644 --- a/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md +++ b/docs/src/content/docs/challenges/angular/9-pipe-wrapFn.md @@ -29,7 +29,7 @@ There are some useful predefined pipes like the DatePipe, UpperCasePipe and Curr ## Statement In this exercise, you are calling multiple functions inside your template. You can create a specific pipe for each of the functions but this will be too cumbersome. -The goal is to create a `wrapFn` pipe to wrap your callback function though a pipe. Your function MUST remain inside your component. **`WrapFn` must be highly reusable.** +The goal is to create a `wrapFn` pipe to wrap your callback function through a pipe. Your function MUST remain inside your component. **`WrapFn` must be highly reusable.** ## Constraints: