mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-08 12:04:29 -05:00
fix(client,curriculum): fix typo for the word 'available' (#57530)
This commit is contained in:
committed by
GitHub
parent
723c15281f
commit
38eb562ba1
@@ -2639,7 +2639,7 @@
|
||||
"lab-fortune-teller": {
|
||||
"title": "Build a Fortune Teller",
|
||||
"intro": [
|
||||
"In this lab, you will build a fortune teller by randomly selecting a fortune from the avaialble fortunes."
|
||||
"In this lab, you will build a fortune teller by randomly selecting a fortune from the available fortunes."
|
||||
]
|
||||
},
|
||||
"lecture-working-with-numbers-and-common-number-methods": {
|
||||
|
||||
@@ -6,4 +6,4 @@ superBlock: full-stack-developer
|
||||
|
||||
## Introduction to Building a Fortune Teller
|
||||
|
||||
In this lab, you will build a fortune teller by randomly selecting a fortune from the avaialble fortunes.
|
||||
In this lab, you will build a fortune teller by randomly selecting a fortune from the available fortunes.
|
||||
|
||||
@@ -49,7 +49,7 @@ library.forEach((book) => {
|
||||
});
|
||||
```
|
||||
|
||||
Your `displayBooks` function should contain the total of `8` books avaialble in the library.
|
||||
Your `displayBooks` function should contain the total of `8` books available in the library.
|
||||
|
||||
```js
|
||||
function getNumOfBooks(catalog) {
|
||||
|
||||
@@ -37,7 +37,7 @@ Your `getBookSummaries` function should use a higher order function. Ex. (`filte
|
||||
assert.match(getBookSummaries.toString(), /filter|map|reduce|forEach/);
|
||||
```
|
||||
|
||||
Your `getBookSummaries` function should contain the total of `8` books avaialble in the library.
|
||||
Your `getBookSummaries` function should contain the total of `8` books available in the library.
|
||||
|
||||
```js
|
||||
assert.lengthOf(getBookSummaries(library), 8);
|
||||
|
||||
Reference in New Issue
Block a user