Skip to content

Commit 18417c3

Browse files
authored
Update article.md
Edited according to feedback
1 parent bda37e2 commit 18417c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2-ui/4-forms-controls/1-form-elements/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Working with forms will be much more convenient when we learn them.
88

99
Document forms are members of the special collection `document.forms`.
1010

11-
That's a so-called <dfn>"named collection"</dfn>: it's both named and ordered. We can use both the name or the number in the document to get the form.
11+
That's a so-called **"named collection"**: it's both named and ordered. We can use both the name or the number in the document to get the form.
1212

1313
```js no-beautify
1414
document.forms.my - the form with name="my"
@@ -38,7 +38,7 @@ For instance:
3838

3939
There may be multiple elements with the same name. This is often the case for radio buttons or checkboxes.
4040

41-
In these cases, `form.elements[name]` is a _collection_. For instance:
41+
In these cases, `form.elements[name]` is a *collection*. For instance:
4242

4343
```html run height=40
4444
<form>

0 commit comments

Comments
 (0)