diff --git a/curriculum/challenges/english/blocks/lab-isbn-validator/686b9720ee1d032bd77a480a.md b/curriculum/challenges/english/blocks/lab-isbn-validator/686b9720ee1d032bd77a480a.md index e43e110eeba..42ed09b143f 100644 --- a/curriculum/challenges/english/blocks/lab-isbn-validator/686b9720ee1d032bd77a480a.md +++ b/curriculum/challenges/english/blocks/lab-isbn-validator/686b9720ee1d032bd77a480a.md @@ -217,7 +217,7 @@ assert "Valid ISBN Code." in out }}) ``` -When the user enters `9781530051120,13`, you should see the message `Valid ISBN Code.`. +When the user enters `9781530051120,13`, you should see the message `Valid ISBN Code.` ```js ({test: () => {runPython(` @@ -271,7 +271,7 @@ assert "Invalid ISBN Code." in out }}) ``` -When the user enters `9781530051120,10`, you should see the message `ISBN-10 code should be 10 digits long.`. +When the user enters `9781530051120,10`, you should see the message `ISBN-10 code should be 10 digits long.` ```js ({test: () => {runPython(` @@ -298,7 +298,7 @@ assert "ISBN-10 code should be 10 digits long." in out }}) ``` -When the user enters `1530051126,13`, you should see the message `ISBN-13 code should be 13 digits long.`. +When the user enters `1530051126,13`, you should see the message `ISBN-13 code should be 13 digits long.` ```js ({test: () => {runPython(` @@ -325,7 +325,7 @@ assert "ISBN-13 code should be 13 digits long." in out }}) ``` -When the user enters `15-0051126,10`, you should see the message `Invalid character was found.`. +When the user enters `15-0051126,10`, you should see the message `Invalid character was found.` ```js ({test: () => {runPython(` @@ -352,7 +352,7 @@ assert "Invalid character was found." in out }}) ``` -When the user enters `1530051126,9`, you should see the message `Length should be 10 or 13.`. +When the user enters `1530051126,9`, you should see the message `Length should be 10 or 13.` ```js ({test: () => {runPython(` @@ -379,7 +379,7 @@ assert "Length should be 10 or 13." in out }}) ``` -When the user enters `1530051125,A`, you should see the message `Length must be a number.`. +When the user enters `1530051125,A`, you should see the message `Length must be a number.` ```js ({test: () => {runPython(` @@ -406,7 +406,7 @@ assert "Length must be a number." in out }}) ``` -When the user enters `1530051125`, you should see the message `Enter comma-separated values.`. +When the user enters `1530051125`, you should see the message `Enter comma-separated values.` ```js ({test: () => {runPython(` @@ -433,7 +433,7 @@ assert "Enter comma-separated values." in out }}) ``` -When the user enters `9971502100,10`, you should see the message `Valid ISBN Code.`. +When the user enters `9971502100,10`, you should see the message `Valid ISBN Code.` ```js ({test: () => {runPython(` @@ -460,7 +460,7 @@ assert "Valid ISBN Code." in out }}) ``` -When the user enters `080442957X,10`, you should see the message `Valid ISBN Code.`. +When the user enters `080442957X,10`, you should see the message `Valid ISBN Code.` ```js ({test: () => {runPython(` @@ -487,7 +487,7 @@ assert "Valid ISBN Code." in out }}) ``` -When the user enters `9781947172104,13`, you should see the message `Valid ISBN Code.`. +When the user enters `9781947172104,13`, you should see the message `Valid ISBN Code.` ```js ({test: () => {runPython(` diff --git a/curriculum/challenges/english/blocks/lab-leap-year-calculator/66c06fad3475cd92421b9ac2.md b/curriculum/challenges/english/blocks/lab-leap-year-calculator/66c06fad3475cd92421b9ac2.md index f2fdc97ebd6..54fba692bc1 100644 --- a/curriculum/challenges/english/blocks/lab-leap-year-calculator/66c06fad3475cd92421b9ac2.md +++ b/curriculum/challenges/english/blocks/lab-leap-year-calculator/66c06fad3475cd92421b9ac2.md @@ -55,19 +55,19 @@ The `year` variable shouldn't be empty. assert.isNotNull(year); ``` -With `2024` as the value of the `year` variable, the `result` should be `2024 is a leap year.`. +With `2024` as the value of the `year` variable, the `result` should be `2024 is a leap year.` ```js assert.strictEqual(isLeapYear(2024), '2024 is a leap year.'); ``` -With `2000` as the value of the `year` variable, the `result` should be `2000 is a leap year.`. +With `2000` as the value of the `year` variable, the `result` should be `2000 is a leap year.` ```js assert.strictEqual(isLeapYear(2000), '2000 is a leap year.'); ``` -With `1900` as the value of the `year` variable, the `result` should be `1900 is not a leap year.`. +With `1900` as the value of the `year` variable, the `result` should be `1900 is not a leap year.` ```js assert.strictEqual(isLeapYear(1900), '1900 is not a leap year.'); diff --git a/curriculum/challenges/english/blocks/lab-number-pattern-generator/6842a6cd9836f0114a5b7a8a.md b/curriculum/challenges/english/blocks/lab-number-pattern-generator/6842a6cd9836f0114a5b7a8a.md index b6ffe675f15..ed4914a30a6 100644 --- a/curriculum/challenges/english/blocks/lab-number-pattern-generator/6842a6cd9836f0114a5b7a8a.md +++ b/curriculum/challenges/english/blocks/lab-number-pattern-generator/6842a6cd9836f0114a5b7a8a.md @@ -16,8 +16,8 @@ In this lab you will practice the basics of Python by building a small app that 1. You should define a function named `number_pattern` that takes a single parameter `n` (representing a positive integer). 1. `number_pattern` should use a `for` loop. 1. `number_pattern(n)` should return a string with all the integers starting from 1 up to `n` (included) separated by a space. For example, `number_pattern(4)` should return the string `1 2 3 4`. -1. If the argument passed to the function is not an integer value, the function should return `Argument must be an integer value.`. -1. If the argument passed to the function is less than 1, the function should return `Argument must be an integer greater than 0.`. +1. If the argument passed to the function is not an integer value, the function should return `Argument must be an integer value.` +1. If the argument passed to the function is less than 1, the function should return `Argument must be an integer greater than 0.` # --hints-- diff --git a/curriculum/challenges/english/blocks/lab-voting-system/673b567e3ba535dda140d278.md b/curriculum/challenges/english/blocks/lab-voting-system/673b567e3ba535dda140d278.md index 429285bd91a..a106d2a1cf5 100644 --- a/curriculum/challenges/english/blocks/lab-voting-system/673b567e3ba535dda140d278.md +++ b/curriculum/challenges/english/blocks/lab-voting-system/673b567e3ba535dda140d278.md @@ -22,15 +22,15 @@ In this lab, you will build a voting system that uses `Map` to create a poll and - If the `option` does not already exist in the poll, it should be added to the poll with an empty `Set` as its value to track voters. You should also return the message `Option "