From 4d8a6e2608dc927495e35b620b6c000555db8def Mon Sep 17 00:00:00 2001 From: Adil Anwar <107459552+TheGreatAdil@users.noreply.github.com> Date: Thu, 5 Feb 2026 13:22:17 +0530 Subject: [PATCH] fix(curriculum): fixed grammar by changing "remove" to "removing" in attributes section (#65713) --- .../6708143cab2b583ecd3324f5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md b/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md index 6230244620a..f91c25c2090 100644 --- a/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md +++ b/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md @@ -59,7 +59,7 @@ In the following example, we have an `input` element with the `type` attribute s The `checked` attribute is used to specify that the checkbox should be checked by default. The `checked` attribute does not require a value. If it is present, the checkbox will be checked by default. If the attribute is not present, the checkbox will be unchecked. This is known as a boolean attribute. You will learn more about booleans in general when you get to the JavaScript section. -Enable the interactive editor and try remove the `checked` attribute from the `input`. You will see that the checkbox is no longer checked by default. +Enable the interactive editor and try removing the `checked` attribute from the `input`. You will see that the checkbox is no longer checked by default. :::interactive_editor