From 9e04a372fc72c975462fcbfd91ecabb1556b8ee6 Mon Sep 17 00:00:00 2001 From: Bharadwaj Pendyala Date: Sun, 19 Jan 2025 12:48:38 -0600 Subject: [PATCH] fix(curriculum): hint on step 5 of story teller workshop (#58234) --- .../workshop-storytelling-app/671fa47e415d88263d349a10.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md index f025560b743..44194c3edca 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-storytelling-app/671fa47e415d88263d349a10.md @@ -17,7 +17,7 @@ You should create a `script` element. assert(document.querySelectorAll('script').length === 3); ``` -Your `script` element should be have an `src` attribute set to `script.js`. +Your `script` element should have an `src` attribute set to `script.js`. ```js const script = document.querySelector("script[data-src$='script.js']");