Merge pull request #357 from jdegand/typos

fix: various typos
This commit is contained in:
Laforge Thomas
2023-11-23 06:02:03 +01:00
committed by GitHub
8 changed files with 13 additions and 13 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,13 +12,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 third exercice, you want to access utils functions. Currently we cannot access them directly from your template. The goal is to create a specific pipe for this utils file where you will need to pass the name of the function you want to call and the needed arguments.
In this third exercice, you want to access utils functions. Currently you cannot access them directly from your template. The goal is to create a specific pipe for this utils file where you will need to pass the name of the function you want to call and the needed arguments.
## Constraints:

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 call 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.