From 38eb562ba13ddaacdfb42db3501f0aeee86fd1b3 Mon Sep 17 00:00:00 2001 From: Chaitanya Rahalkar Date: Sat, 14 Dec 2024 02:42:57 -0600 Subject: [PATCH] fix(client,curriculum): fix typo for the word 'available' (#57530) --- client/i18n/locales/english/intro.json | 2 +- .../learn/full-stack-developer/lab-fortune-teller/index.md | 2 +- .../workshop-library-manager/67116d7584d0b469b14579c1.md | 2 +- .../workshop-library-manager/67116d7584d0b469b14579c2.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/i18n/locales/english/intro.json b/client/i18n/locales/english/intro.json index e512466588d..6b81de37fd8 100644 --- a/client/i18n/locales/english/intro.json +++ b/client/i18n/locales/english/intro.json @@ -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": { diff --git a/client/src/pages/learn/full-stack-developer/lab-fortune-teller/index.md b/client/src/pages/learn/full-stack-developer/lab-fortune-teller/index.md index 66f5061fc52..86fc56dce9e 100644 --- a/client/src/pages/learn/full-stack-developer/lab-fortune-teller/index.md +++ b/client/src/pages/learn/full-stack-developer/lab-fortune-teller/index.md @@ -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. diff --git a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c1.md b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c1.md index 6bb742208df..a6fdf2b56bb 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c1.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c1.md @@ -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) { diff --git a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c2.md b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c2.md index 533d9a351dd..266f4843b8f 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c2.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/67116d7584d0b469b14579c2.md @@ -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);