From 32cbeabdb626ab83518a2cf744952c49a3d5ac2f Mon Sep 17 00:00:00 2001 From: Alice Jiang Date: Wed, 8 Feb 2017 20:58:49 -0600 Subject: [PATCH] Reword amiguous challenge instructions --- .../04-data-visualization/data-visualization-with-d3.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/04-data-visualization/data-visualization-with-d3.json b/seed/challenges/04-data-visualization/data-visualization-with-d3.json index 021391216e..2f1b567d2e 100644 --- a/seed/challenges/04-data-visualization/data-visualization-with-d3.json +++ b/seed/challenges/04-data-visualization/data-visualization-with-d3.json @@ -497,7 +497,7 @@ "SVG is used to make common geometric shapes. Since D3 maps data into a visual representation, it uses SVG to create the shapes for the visualization. SVG shapes for a web page must go within an HTML svg tag.", "CSS can be scalable when styles use relative units (such as vh, vw, or percentages), but using SVG is more flexible to build data visualizations.", "
", - "Add an svg node to the body using append(). Give it a width attribute of 500 and a height attribute of 100 using the attr() method for each. You'll see it in the output because there's a background-color of pink applied to it in the style tag.", + "Add an svg node to the body using append(). Give it a width attribute set to the provided w constant and a height attribute set to the provided h constant using the attr() method for each. You'll see it in the output because there's a background-color of pink applied to it in the style tag.", "Note
Width and height attributes do not have units. This is the building block of scaling - the element will always have a 5:1 width to height ratio, no matter what the zoom level is." ], "challengeSeed": [