From 998185448a47930ee3e4f4bd2648eb0fd44fe723 Mon Sep 17 00:00:00 2001 From: dev-kamil <54180588+dev-kamil@users.noreply.github.com> Date: Wed, 11 Jun 2025 06:15:37 +0200 Subject: [PATCH] fix(curriculum): missing space between backtick and parenthesis (#60822) --- .../6629e10635cf1ec412861da1.md | 2 +- .../review-javascript-dates/6723ced0ba0b42c2a0ac14d2.md | 2 +- .../review-javascript/6723d3cfdd0717d3f1bf27e3.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-use-basic-programming-vocabulary-in-conversations/6629e10635cf1ec412861da1.md b/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-use-basic-programming-vocabulary-in-conversations/6629e10635cf1ec412861da1.md index abcba66a282..5ed5b72fac6 100644 --- a/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-use-basic-programming-vocabulary-in-conversations/6629e10635cf1ec412861da1.md +++ b/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-use-basic-programming-vocabulary-in-conversations/6629e10635cf1ec412861da1.md @@ -11,7 +11,7 @@ dashedName: task-6 The phrase `a lot` is used to express a large quantity or degree of something. It can be used to talk about both countable and uncountable nouns. -When you want to say that there is much of something or many of something, you can use `a lot` followed by `of`, like in `a lot of books`(countable noun) or `a lot of water` (uncountable noun). +When you want to say that there is much of something or many of something, you can use `a lot` followed by `of`, like in `a lot of books` (countable noun) or `a lot of water` (uncountable noun). You can use it at the end of the sentence to express that something is done often or frequently. An example is `He travels a lot.` It means `He travels often.` diff --git a/curriculum/challenges/english/25-front-end-development/review-javascript-dates/6723ced0ba0b42c2a0ac14d2.md b/curriculum/challenges/english/25-front-end-development/review-javascript-dates/6723ced0ba0b42c2a0ac14d2.md index a4de9c0473b..01a8df7827f 100644 --- a/curriculum/challenges/english/25-front-end-development/review-javascript-dates/6723ced0ba0b42c2a0ac14d2.md +++ b/curriculum/challenges/english/25-front-end-development/review-javascript-dates/6723ced0ba0b42c2a0ac14d2.md @@ -42,7 +42,7 @@ console.log(year); // 2024 ## Different Ways to Format Dates -- **`toISOString()` Method**: This method is used to format the date in an extended `ISO`(ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`. +- **`toISOString()` Method**: This method is used to format the date in an extended `ISO` (ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`. ```js const date = new Date(); diff --git a/curriculum/challenges/english/25-front-end-development/review-javascript/6723d3cfdd0717d3f1bf27e3.md b/curriculum/challenges/english/25-front-end-development/review-javascript/6723d3cfdd0717d3f1bf27e3.md index 6a6108c3847..002cf5b42ee 100644 --- a/curriculum/challenges/english/25-front-end-development/review-javascript/6723d3cfdd0717d3f1bf27e3.md +++ b/curriculum/challenges/english/25-front-end-development/review-javascript/6723d3cfdd0717d3f1bf27e3.md @@ -2248,7 +2248,7 @@ console.log(year); // 2024 ## Different Ways to Format Dates -- **`toISOString()` Method**: This method is used to format the date in an extended `ISO`(ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`. +- **`toISOString()` Method**: This method is used to format the date in an extended `ISO` (ISO 8601) format. ISO 8601 is an international standard for representing dates and times. The format is `YYYY-MM-DDTHH:mm:ss.sssZ`. ```js const date = new Date();