diff --git a/subjects/AI.GO/first-move/README.md b/subjects/AI.GO/first-move/README.md index e4a47063f..efd76973b 100644 --- a/subjects/AI.GO/first-move/README.md +++ b/subjects/AI.GO/first-move/README.md @@ -37,7 +37,7 @@ Second, [Link a JS script](https://developer.mozilla.org/en-US/docs/Web/HTML/Ele #### Task 2 -Then in your Javascript file, you're going to close the left eye of your entity. To do so, you have to first target the `eye-left` HTML element by its `id` using the [getElementById](https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById) method. +Then in your Javascript file, you're going to close the left eye of your entity. To do so, you have to first target the `eye-left` HTML element by its `id` using the [getElementById](https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById) method. #### Task 3 diff --git a/subjects/AI.GO/good-recipe/README.md b/subjects/AI.GO/good-recipe/README.md index 784f1f3ec..54f757bf3 100644 --- a/subjects/AI.GO/good-recipe/README.md +++ b/subjects/AI.GO/good-recipe/README.md @@ -54,7 +54,7 @@ Using the `.slice` method to cut parts of a string: let numbers = "0123456789"; let firstNumbers = numbers.slice(5); // '6789' let lastNumbers = numbers.slice(0, -3); // '0123456' -let cutBothSides= numbers.slice(2, -3); // '23456' +let cutBothSides = numbers.slice(2, -3); // '23456' ``` ### Splitting Strings diff --git a/subjects/AI.GO/i-win-arguments/README.md b/subjects/AI.GO/i-win-arguments/README.md index 1df4fe848..7c16cba8b 100644 --- a/subjects/AI.GO/i-win-arguments/README.md +++ b/subjects/AI.GO/i-win-arguments/README.md @@ -149,7 +149,7 @@ As the leader of the RoboGuard forces, you're not just preparing for battle—yo - This function will take `three arguments`: the **names** of two robots and the **task** they will perform together. -- It will `log them` together in a sentence describing their task with the same formatting than below. +- It will `log them` together in a sentence describing their task with the same formatting than below. > Output's example: "robotOne and robotTwo are saying hi!