From 573d08dc7048ffcc3951fddb31016e34463497e9 Mon Sep 17 00:00:00 2001 From: Neelesh Verma Date: Mon, 21 Apr 2025 20:13:21 +0530 Subject: [PATCH] fix: Replace quotes with backticks in Cat Photo App step 9. (#59836) --- .../workshop-cat-photo-app/5dc24165f86c76b9248c6ebc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/5dc24165f86c76b9248c6ebc.md b/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/5dc24165f86c76b9248c6ebc.md index f4fcfb43fa7..d313cf51abb 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/5dc24165f86c76b9248c6ebc.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/5dc24165f86c76b9248c6ebc.md @@ -33,7 +33,7 @@ Your `img` element does not have an `alt` attribute. Check that there is a space assert.isTrue(document.querySelector('img')?.hasAttribute('alt')); ``` -Your `img` element's `alt` attribute value is set to something other than 'A cute orange cat lying on its back'. Make sure the `alt` attribute's value is surrounded with quotation marks. +Your `img` element's `alt` attribute value is set to something other than `A cute orange cat lying on its back`. Make sure the `alt` attribute's value is surrounded with quotation marks. ```js const altText = document