diff --git a/curriculum/challenges/english/blocks/lecture-working-with-forms-in-react/67d1a928ae86929a85c1bb6b.md b/curriculum/challenges/english/blocks/lecture-working-with-forms-in-react/67d1a928ae86929a85c1bb6b.md index a8934035500..3db1b8b89d1 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-forms-in-react/67d1a928ae86929a85c1bb6b.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-forms-in-react/67d1a928ae86929a85c1bb6b.md @@ -9,7 +9,7 @@ dashedName: how-do-forms-work-in-react Forms are fundamental to every web application because they let you handle user input, collect data, and trigger actions. -In React, forms are managed using state or refs, giving you full control over their behavior and validation. These two ways to manage forms are called "controlled" and "uncontrolled" input. +In React, forms are managed using state or refs, giving you full control over their behavior and validation. These two ways to manage forms are called "controlled" and "uncontrolled" input. Let's look at what controlled and uncontrolled inputs are.