From dc31b5cc5f16b781df3fdc3925edf96c727095d7 Mon Sep 17 00:00:00 2001 From: Vimal Raghubir Date: Mon, 18 Jun 2018 21:45:09 -0400 Subject: [PATCH] Fix: Reword unempathetic sentence (#17598) * Fix: Reword unempathetic sentence * Remove unnecessary word --- .../01-responsive-web-design/applied-accessibility.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-responsive-web-design/applied-accessibility.json b/seed/challenges/01-responsive-web-design/applied-accessibility.json index 6caf7eb041..8c24dcae32 100644 --- a/seed/challenges/01-responsive-web-design/applied-accessibility.json +++ b/seed/challenges/01-responsive-web-design/applied-accessibility.json @@ -474,7 +474,7 @@ "id": "587d7789367417b2b2512aa4", "title": "Improve Accessibility of Audio Content with the audio Element", "description": [ - "HTML5's audio element gives semantic meaning when it wraps sound or audio stream content in your markup. Audio content also needs a text alternative to be accessible to the deaf or hard of hearing. This can be done with nearby text on the page or a link to a transcript.", + "HTML5's audio element gives semantic meaning when it wraps sound or audio stream content in your markup. Audio content also needs a text alternative to be accessible to people who are deaf or hard of hearing. This can be done with nearby text on the page or a link to a transcript.", "The audio tag supports the controls attribute. This shows the browser default play, pause, and other controls, and supports keyboard functionality. This is a boolean attribute, meaning it doesn't need a value, its presence on the tag turns the setting on.", "Here's an example:", "
<audio id="meowClip" controls>
  <source src="audio/meow.mp3" type="audio/mpeg" />
  <source src="audio/meow.ogg" type="audio/ogg" />
</audio>
",