From 9a63bd60b6d9ccbb34b1f58c3a467afce9cff766 Mon Sep 17 00:00:00 2001 From: Logan Tegman Date: Sun, 1 Nov 2015 11:22:27 -0800 Subject: [PATCH] Fix Create Radio Buttons Redundant Wording Closes #3856 --- seed/challenges/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json index 82f2c72603..b56fe174d4 100644 --- a/seed/challenges/html5-and-css.json +++ b/seed/challenges/html5-and-css.json @@ -2024,7 +2024,7 @@ "All related radio buttons should have the same name attribute.", "Here's an example of a radio button:", "<label><input type=\"radio\" name=\"indoor-outdoor\"> Indoor</label>", - "Add to your form a pair of radio buttons. Each radio button should be nested within its own label element. They should share a common name attribute. One should have the option of indoor and the other should have the option of outdoor." + "Add a pair of radio buttons to your form. One should have the option of indoor and the other should have the option of outdoor." ], "tests": [ "assert($('input[type=\"radio\"]').length > 1, 'Your page should have two radio button elements.')",