diff --git a/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md b/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md index 255514eca51..314e99bd61a 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md +++ b/curriculum/challenges/english/16-the-odin-project/top-build-a-recipe-project/top-build-a-recipe-project.md @@ -107,7 +107,7 @@ const h2 = document.querySelectorAll('H2')[2]; assert(h2.innerText == 'Steps'); ``` -You should have a `
    ` with the the steps as the list items `
  1. `. +You should have a `
      ` with the steps as the list items `
    1. `. ```js const orderedList = document.querySelectorAll('OL')[0];