Skip to content

Commit

Permalink
Chore(AI-GO): Run prettier to fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Oumaimafisaoui committed Sep 26, 2024
1 parent 948dead commit c81a6fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion subjects/AI.GO/first-move/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion subjects/AI.GO/good-recipe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion subjects/AI.GO/i-win-arguments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down

0 comments on commit c81a6fa

Please sign in to comment.