From 8806d5b8ecb328c3f49883e373faa71cd0eec6d6 Mon Sep 17 00:00:00 2001 From: Zearin Date: Sat, 16 Jan 2021 16:40:46 -0500 Subject: [PATCH] Update article.md Rewrote phrasing pointed out in feedback --- 2-ui/4-forms-controls/1-form-elements/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 882b2d9e..9661f825 100644 --- a/2-ui/4-forms-controls/1-form-elements/article.md +++ b/2-ui/4-forms-controls/1-form-elements/article.md @@ -36,9 +36,9 @@ For instance: ``` -There may be multiple elements with the same name. This is often the case for radio buttons or checkboxes. +There may be multiple elements with the same name. This is typical with radio buttons and checkboxes. -In these cases, `form.elements[name]` is a *collection*. For instance: +In that case, `form.elements[name]` is a *collection*. For instance: ```html run height=40