From be0a8f1e58e123e0f1238722bbeeada7dec98209 Mon Sep 17 00:00:00 2001 From: YMatsuda <25644062+sidemt@users.noreply.github.com> Date: Tue, 15 Nov 2022 02:57:53 +0900 Subject: [PATCH] fix(curriculum): fix hint for main tag placement (CatPhotoApp Step 5) (#48504) fix(curriculum): fix hint --- .../5dc2385ff86c76b9248c6eb7.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc2385ff86c76b9248c6eb7.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc2385ff86c76b9248c6eb7.md index cf35c727a9b..4e8641c7651 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc2385ff86c76b9248c6eb7.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc2385ff86c76b9248c6eb7.md @@ -25,7 +25,7 @@ Your `main` element should have a closing tag. Closing tags have a `/` just afte assert(code.match(/<\/main\>/)); ``` -Your `main` element's opening tag should be below the `body` element. You have them in the wrong order. +Your `main` element's opening tag should be below the `body` element's opening tag. You have them in the wrong order. ```js const main = document.querySelector('main');