diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md index 47163447fe7..76c12ef9732 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc23991f86c76b9248c6eb8.md @@ -55,7 +55,7 @@ You should not change the indentation on the line with your comment element. Its assert( code .toLowerCase() - .match(/<\/h2>\n\s{6}/) + .match(/<\/h2>\s*\n\s{6}/) ); ``` @@ -79,7 +79,7 @@ assert( The opening `p` tag should have indentation that matches your `h2` and comment elements. Its opening tag should start 6 spaces over from the start of the line. ```js -assert(code.toLowerCase().match(/-->\n\s{6}
/)); +assert(code.toLowerCase().match(/-->\s*\n\s{6}
/)); ``` # --seed--