From c46cf6e5ca15f9d89598754ee4506240519f427c Mon Sep 17 00:00:00 2001 From: Farhan Hasin Chowdhury Date: Fri, 18 Mar 2022 21:42:26 +0600 Subject: [PATCH] fix(curriculum): fixed mistakes in the source string (#45448) * chore: fixed mistakes in the source string * Update curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e7.md Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> --- .../5ef9b03c81a63668521804e7.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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');