Skip to content

Commit 00bb437

Browse files
authored
fix(curriculum): clarify wording for radio and checkbox options (freeCodeCamp#57343)
1 parent 3d95bd9 commit 00bb437

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804dc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ dashedName: step-46
99

1010
You can use radio buttons for questions where you want only one answer out of multiple options.
1111

12-
Here is an example of a radio button with the option of `cat`:
12+
Here is an example of a radio button with the text set as `cat`:
1313

1414
```html
1515
<input type="radio"> cat
1616
```
1717

1818
Remember that an `input` element is a void element.
1919

20-
Before the text input, add a radio button with the option set as:
20+
Before the text input, add a radio button with the text set as:
2121

2222
`Indoor`
2323

curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dashedName: step-56
99

1010
Forms commonly use checkboxes for questions that may have more than one answer. The `input` element with a `type` attribute set to `checkbox` creates a checkbox.
1111

12-
Under the `legend` element you just added, add an `input` with its `type` attribute set to `checkbox` and give it the option of:
12+
Under the `legend` element you just added, add an `input` with its `type` attribute set to `checkbox` and its text set to:
1313

1414
`Loving`
1515

0 commit comments

Comments
 (0)