From 9e20cfa0ecf2c74cfc782e0410cef51f70aa9440 Mon Sep 17 00:00:00 2001 From: vithoang <44270929+vithoang@users.noreply.github.com> Date: Thu, 25 Oct 2018 02:13:43 -0500 Subject: [PATCH] Revised description to add more info (#19892) --- guide/english/html/tutorials/basic-html/radio-button/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/html/tutorials/basic-html/radio-button/index.md b/guide/english/html/tutorials/basic-html/radio-button/index.md index a6009ebb88..995d6bb83b 100644 --- a/guide/english/html/tutorials/basic-html/radio-button/index.md +++ b/guide/english/html/tutorials/basic-html/radio-button/index.md @@ -19,4 +19,4 @@ title: Radio Button ``` -Radio buttons can be used to select a single option out of multiple options. You aren't allowed to choose 2 or more radio buttons in the same selection field. +Radio buttons can be used when you want to limit a user's selection to one option when multiple options are available. A user cannot choose 2 or more radio buttons in the same selection field. By giving a group of radio buttons the same name attribute, the selection of one button will automatically result in the deselection of other buttons.