From 8f6558608de25c7fb7970f15f407b6b90986cac2 Mon Sep 17 00:00:00 2001 From: Sebastian Goettschkes Date: Wed, 2 Jan 2013 14:11:50 +0100 Subject: [PATCH 1/2] Changing the description of the Radio Form Type --- reference/forms/types/radio.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/forms/types/radio.rst b/reference/forms/types/radio.rst index ef00745812d..c06864cc189 100644 --- a/reference/forms/types/radio.rst +++ b/reference/forms/types/radio.rst @@ -4,9 +4,9 @@ radio Field Type ================ -Creates a single radio button. This should always be used for a field that -has a Boolean value: if the radio button is selected, the field will be set -to true, if the button is not selected, the value will be set to false. +Creates a single radio button. If the radio button is selected, the field will +be set to the specified value. Radio buttons cannot be unchecked - The value only +changes when another radio button with the same gets checked. The ``radio`` type isn't usually used directly. More commonly it's used internally by other types such as :doc:`choice`. From 3b87ca0f5886abccf9746434ee4337e586322a96 Mon Sep 17 00:00:00 2001 From: Sebastian Goettschkes Date: Wed, 2 Jan 2013 14:38:00 +0100 Subject: [PATCH 2/2] Fixing to minor spelling errors in the radio form type --- reference/forms/types/radio.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/forms/types/radio.rst b/reference/forms/types/radio.rst index c06864cc189..d6e29d41fd7 100644 --- a/reference/forms/types/radio.rst +++ b/reference/forms/types/radio.rst @@ -5,8 +5,8 @@ radio Field Type ================ Creates a single radio button. If the radio button is selected, the field will -be set to the specified value. Radio buttons cannot be unchecked - The value only -changes when another radio button with the same gets checked. +be set to the specified value. Radio buttons cannot be unchecked - the value only +changes when another radio button with the same name gets checked. The ``radio`` type isn't usually used directly. More commonly it's used internally by other types such as :doc:`choice`.