fix(curriculum): grammatical error in instruction - Odin project: Recipe page (#53716)

This commit is contained in:
Josué Makuta
2024-02-15 17:11:50 +02:00
committed by GitHub
parent f50eb7bb9a
commit 32e499d6ac

View File

@@ -107,7 +107,7 @@ const h2 = document.querySelectorAll('H2')[2];
assert(h2.innerText == 'Steps');
```
You should have a `<ol>` with the the steps as the list items `<li>`.
You should have a `<ol>` with the steps as the list items `<li>`.
```js
const orderedList = document.querySelectorAll('OL')[0];