From b93be7398add9c0749ade17cdf6483c56d7a4a03 Mon Sep 17 00:00:00 2001 From: Zearin Date: Mon, 25 Jan 2021 10:55:45 -0500 Subject: [PATCH] Update article.md --- 2-ui/4-forms-controls/1-form-elements/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/4-forms-controls/1-form-elements/article.md b/2-ui/4-forms-controls/1-form-elements/article.md index 9661f825..f4df7b12 100644 --- a/2-ui/4-forms-controls/1-form-elements/article.md +++ b/2-ui/4-forms-controls/1-form-elements/article.md @@ -8,7 +8,7 @@ Working with forms will be much more convenient when we learn them. Document forms are members of the special collection `document.forms`. -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. +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. ```js no-beautify document.forms.my - the form with name="my"