fix(curriculum): fixed grammar by changing "remove" to "removing" in attributes section (#65713)

This commit is contained in:
Adil Anwar 2026-02-05 13:22:17 +05:30 committed by GitHub
parent b383a90a95
commit 4d8a6e2608
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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