fix: various typos

This commit is contained in:
jdegand
2023-11-22 23:14:10 -05:00
parent 3cc42ffc79
commit a3de1d5b96
8 changed files with 12 additions and 12 deletions

View File

@@ -15,7 +15,7 @@ sidebar:
## Information
In Angular, content projection is a powerful technique for creating highly customizable components. Utilizing and understanding the concepts of <b>ng-content</b> and <b>ngTemplateOutlet</b> can sighificantly enhance your ability to create shareable components.
In Angular, content projection is a powerful technique for creating highly customizable components. Utilizing and understanding the concepts of <b>ng-content</b> and <b>ngTemplateOutlet</b> can significantly enhance your ability to create shareable components.
You can learn all about <b>ng-content</b> [here](https://angular.io/guide/content-projection#projecting-content-in-more-complex-environments) from simple projection to more complex ones.

View File

@@ -12,9 +12,9 @@ sidebar:
WIP: The following documentation will be reviewed and improved. However, you can still take on the challenge. If you don't understand a certain part, please feel free to reach out or create an issue.
:::
The goal of this serie of 3 pipe challenges is to master PIPES in Angular.
The goal of this series of 3 pipe challenges is to master PIPES in Angular.
Pure pipe are a very useful way to transform data from your template. The difference between calling a function and a pipe is that pure pire are memoized. So they won't be recalculated every change detection cycle if the inputs hasn't changed.
Pure pipes are a very useful way to transform data from 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.
## Information:

View File

@@ -13,13 +13,13 @@ sidebar:
WIP: The following documentation will be reviewed and improved. However, you can still take on the challenge. If you don't understand a certain part, please feel free to reach out or create an issue.
:::
The goal of this serie of 3 pipe challenges is to master PIPES in Angular.
The goal of this series of 3 pipe challenges is to master PIPES in Angular.
Pure pipe are a very useful way to transform data from your template. The difference between calling a function and a pipe is that pure pire are memoized. So they won't be recalculated every change detection cycle if the inputs hasn't changed.
Pure pipes are a very useful way to transform data from 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.
## Information:
In this first exercice, you add calling a simple function inside your template. The goal is to convert it to a pipe.
In this first exercice, you add a simple function inside your template. The goal is to convert it to a pipe.
## Constraints:

View File

@@ -15,9 +15,9 @@ WIP: The following documentation will be reviewed and improved. However, you can
<div class="chip">Challenge #9</div>
The goal of this serie of 3 pipe challenges is to master PIPES in Angular.
The goal of this series of 3 pipe challenges is to master PIPES in Angular.
Pure pipe are a very useful way to transform data from your template. The difference between calling a function and a pipe is that pure pire are memoized. So they won't be recalculated every change detection cycle if the inputs hasn't changed.
Pure pipes are a very useful way to transform data from 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.
## Information:

View File

@@ -3,7 +3,7 @@ title: 🟠 High Order Operator Bug
description: Challenge 11 is about resolving a Rxjs bug because of high order operators
author: Thomas Laforge
challengeNumber: 11
command: rxjs-pipe-bu
command: rxjs-pipe-bug
sidebar:
order: 114
---

View File

@@ -17,4 +17,4 @@ You can contribute to this repository in many ways:
🔥 File an issue to suggest new challenge ideas or report a bug.
🔥 Sponsor the project [here](https://github.com/sponsors/tomalaforge)
🔥 Sponsor the project [here](https://github.com/sponsors/tomalaforge).

View File

@@ -10,7 +10,7 @@ sidebar:
Most of the time, this issue arises because your node_modules are outdated, and you need to update them by running `npm ci`.
If the installation process fails, you can resolve it by deleting your node_modules folder using the command `rm -rf node_modules` or `npx npkill` and then rerunning `npm ci`.
If the installation process fails, you can resolve it by deleting your node_modules folder using the command `rm -rf node_modules` or `npx npkill` and then re-running `npm ci`.
If the problem persists, please report the issue [here](https://github.com/tomalaforge/angular-challenges/issues/new).

View File

@@ -82,7 +82,7 @@ You can now click on <span class="github-success-btn">Create pull request</span>
I will read and comment on it <b>when I have some free time.</b>
<p class="important-block">Don't worry if your answer is not reviewed immediatly. I'm doing it for <b>free</b> and during my <b>free time</b>. If you want to support me, you can do so by <a href="https://github.com/sponsors/tomalaforge">sponsoring me on github</a>. It will validate that my work is of great help for you or your team.</p>
<p class="important-block">Don't worry if your answer is not reviewed immediately. I'm doing it for <b>free</b> and during my <b>free time</b>. If you want to support me, you can do so by <a href="https://github.com/sponsors/tomalaforge">sponsoring me on github</a>. It will validate that my work is of great help for you or your team.</p>
:::note
Everyone is welcome to comment and read other PRs.