From 27dd4d24a2c897dfaf7c6d2853b0c7e106b7f00a Mon Sep 17 00:00:00 2001 From: Sudi Williams <107420753+sudi-W@users.noreply.github.com> Date: Thu, 11 Dec 2025 07:17:28 -0300 Subject: [PATCH] fix(curriculum): fix wording in Todo App Step 6 (#64502) --- .../64e4e78a7ea4a168de4e6a38.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.