From 181321d90dffd8ed2e27fd76eebd5dbc013b9730 Mon Sep 17 00:00:00 2001 From: bobofishbo <144623157+bobofishbo@users.noreply.github.com> Date: Mon, 5 May 2025 03:25:43 -0400 Subject: [PATCH] fix(curriculum): correct aria-label hint in music player step 43 (#60144) --- .../workshop-music-player/6752edba757ff96404faf9e9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-music-player/6752edba757ff96404faf9e9.md b/curriculum/challenges/english/25-front-end-development/workshop-music-player/6752edba757ff96404faf9e9.md index b272cec4634..753f813a10e 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-music-player/6752edba757ff96404faf9e9.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-music-player/6752edba757ff96404faf9e9.md @@ -27,7 +27,7 @@ setPlayButtonAccessibleText(); assert.equal(playButton.getAttribute("aria-label"), "Play Cruising for a Musing"); ``` - When `userData.currentSong` is `null`, `setPlayButtonAccessibleText` should set the `aria-label` attribute of the play button to `Play` followed by a space and title of the first song in your playlist. + When `userData.currentSong` is `null`, `setPlayButtonAccessibleText` should set the `aria-label` attribute of the play button to `Play`. ```js userData.currentSong = null;