fix(curriculum): grammatical typo (#57876)

This commit is contained in:
Clarence 2025-01-02 20:52:04 +01:00 committed by GitHub
parent eb8e96e278
commit 234aa80466
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ Review the concepts below to prepare for the upcoming quiz.
- Currying is a functional programming technique that transforms a function with multiple arguments into a sequence of functions, each taking a single argument.
Here is an example of a regualr function vs a curried function:
Here is an example of a regular function vs a curried function:
```js
// Regular function

View File

@ -2613,7 +2613,7 @@ In the above example, the `findFactorial` function is called recursively until `
- Currying is a functional programming technique that transforms a function with multiple arguments into a sequence of functions, each taking a single argument.
Here is an example of a regualr function vs a curried function:
Here is an example of a regular function vs a curried function:
```js
// Regular function