diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e7.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e7.md index ca63b06807..9ef0598547 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e7.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e7.md @@ -13,7 +13,7 @@ After the `main` element, add a `footer` element. # --hints-- -You have either deleted the `main` element or it is missing an opening tag or closing tag." +You have either deleted the `main` element or it is missing an opening tag or closing tag. ```js assert(document.querySelector('main') && code.match(/<\/main>/)); @@ -31,7 +31,7 @@ Your `footer` element should have a closing tag. Closing tags have a `/` just af assert(code.match(/<\/footer\>/)); ``` -Your `footer` element should the below the closing `main` element tag. You have it put it somewhere else. +Your `footer` element should be below the closing `main` element tag. You have put it somewhere else. ```js assert(document.querySelector('main').nextElementSibling.nodeName === 'FOOTER');