fix(client,curriculum): fix typo for the word 'available' (#57530)

This commit is contained in:
Chaitanya Rahalkar
2024-12-14 02:42:57 -06:00
committed by GitHub
parent 723c15281f
commit 38eb562ba1
4 changed files with 4 additions and 4 deletions

View File

@@ -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": {

View File

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

View File

@@ -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) {

View File

@@ -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);