From 2bebb92189c0d130b9be9e831bd84feebfd8b5de Mon Sep 17 00:00:00 2001 From: Ilenia Date: Tue, 10 May 2022 12:11:31 +0200 Subject: [PATCH] fix(curriculum): missing word and backticks --- .../5dfa2407b521be39a3de7be1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');