diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efae0543cbd2bbdab94e333.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efae0543cbd2bbdab94e333.md index 9a5c5740fcf..5e89d59a9e9 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efae0543cbd2bbdab94e333.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efae0543cbd2bbdab94e333.md @@ -19,7 +19,7 @@ Your `figure` element should have an opening tag. Opening tags have this syntax: assert(document.querySelectorAll('figure').length === 2); ``` -Your `ol` element should have a closing tag. Closing tags have a `/` just after the `<` character. +Your `figure` element should have a closing tag. Closing tags have a `/` just after the `<` character. ```js assert(code.match(/<\/figure>/g).length === 2);