From 840835f5ffbf2ed3b00149d230f614c7cf4f8c97 Mon Sep 17 00:00:00 2001 From: yaseen <162313801+yaseen-vm@users.noreply.github.com> Date: Thu, 21 May 2026 16:52:12 +0530 Subject: [PATCH] fix(curriculum): correct grammar in lecture-accessible-media-elements (#67508) --- .../672a55b5c0c14493328fe36e.md | 2 +- .../672a55dd1d86bc939606e204.md | 2 +- .../672a55eb7791559421ff0cd3.md | 2 +- .../672a55fbc2d95a9453151caf.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55b5c0c14493328fe36e.md b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55b5c0c14493328fe36e.md index 7a976366f4b..21f0b53da42 100644 --- a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55b5c0c14493328fe36e.md +++ b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55b5c0c14493328fe36e.md @@ -72,7 +72,7 @@ You should write something like this instead, where the `alt` text describes wha Only images that convey important information should have `alt` text. If an image is only used for decorative purposes, it should have `null` (empty) `alt` text, so it can be ignored by screen readers and other assistive technologies. -Here is an example of an empty `alt` attribute is empty: +Here is an example of an empty `alt` attribute: ```html diff --git a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55dd1d86bc939606e204.md b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55dd1d86bc939606e204.md index 79c21e47c5c..bb60bbb71e0 100644 --- a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55dd1d86bc939606e204.md +++ b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55dd1d86bc939606e204.md @@ -44,7 +44,7 @@ Now, here is an example of good link text: This link text gives users context about the content they will find, making it easier to decide whether they want to click on it. It reduces ambiguity by specifying that the link is related to a webinar. -Here is an another example linking to a post in a blog: +Here is another example linking to a post in a blog: ```html Read more diff --git a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55eb7791559421ff0cd3.md b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55eb7791559421ff0cd3.md index 0c07ea51d1d..546ff843cfa 100644 --- a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55eb7791559421ff0cd3.md +++ b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55eb7791559421ff0cd3.md @@ -17,7 +17,7 @@ A video is not just about visuals but also audio, so the first thing you should Captions provide the text version of spoken words and important non-verbal sounds, like music or laughter, synchronized with the video. -Subtitles on the other hand are essential for people who don't understand the language you're speaking. This helps not only people who are deaf or hard of hearing but also those watching videos in noisy or quiet environments. +Subtitles, on the other hand, are essential for people who don't understand the language you're speaking. This helps not only people who are deaf or hard of hearing but also those watching videos in noisy or quiet environments. To add captions or subtitles to your video or audio content, you can use the `track` element inside your `video` or `audio` element: diff --git a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55fbc2d95a9453151caf.md b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55fbc2d95a9453151caf.md index 46cd3e6b345..829e9093efe 100644 --- a/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55fbc2d95a9453151caf.md +++ b/curriculum/challenges/english/blocks/lecture-accessible-media-elements/672a55fbc2d95a9453151caf.md @@ -14,7 +14,7 @@ Let's look at some practical techniques you can employ to make web applications Many users rely on the `Tab` key to move through interactive elements on a webpage. By default, browsers let users tab through elements like links, buttons, and form fields in the order they appear in the HTML. This is called the natural tab order. -Sometimes, you may want to adjust which elements are focusable or change their focus order. The `tabindex` attribute allows you do this. +Sometimes, you may want to adjust which elements are focusable or change their focus order. The `tabindex` attribute allows you to do this. Here is the basic syntax: