fix(curriculum): fix wording in Todo App Step 6 (#64502)

This commit is contained in:
Sudi Williams
2025-12-11 07:17:28 -03:00
committed by GitHub
parent 14da4015af
commit 27dd4d24a2

View File

@@ -9,7 +9,7 @@ dashedName: step-6
Now, you will work on opening and closing the form modal.
In earlier projects, you learned how to add and remove classes from an element with `el.classList.add()` and `el.classList.remove()`. Another method to use with the `classList` property is the `toggle` method.
In earlier lessons, you learned how to add and remove classes from an element with `el.classList.add()` and `el.classList.remove()`. Another method to use with the `classList` property is the `toggle` method.
The `toggle` method will add the class if it is not present on the element, and remove the class if it is present on the element.