diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa2407b521be39a3de7be1.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa2407b521be39a3de7be1.md index 387f1580011..8feb607b713 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa2407b521be39a3de7be1.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa2407b521be39a3de7be1.md @@ -27,7 +27,7 @@ Your anchor (`a`) element does not have a `target` attribute. Check that there i assert(document.querySelector('a').hasAttribute('target')); ``` -The value of the `target` attribute should '\_blank'. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks. +The value of the `target` attribute should be `\_blank`. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks. ```js assert(document.querySelector('a').getAttribute('target') === '_blank');