From 32e499d6acc5c2ff5c8f0dca2e437d6d90d470bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Makuta?= Date: Thu, 15 Feb 2024 17:11:50 +0200 Subject: [PATCH] fix(curriculum): grammatical error in instruction - Odin project: Recipe page (#53716) --- .../top-build-a-recipe-project/top-build-a-recipe-project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];