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');