diff --git a/curriculum/challenges/english/blocks/learn-localstorage-by-building-a-todo-app/64e4e78a7ea4a168de4e6a38.md b/curriculum/challenges/english/blocks/learn-localstorage-by-building-a-todo-app/64e4e78a7ea4a168de4e6a38.md index b3bc8f116a1..efcbac07025 100644 --- a/curriculum/challenges/english/blocks/learn-localstorage-by-building-a-todo-app/64e4e78a7ea4a168de4e6a38.md +++ b/curriculum/challenges/english/blocks/learn-localstorage-by-building-a-todo-app/64e4e78a7ea4a168de4e6a38.md @@ -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.