From f8aa6c04e20cf363d727d93c366f34894625110a Mon Sep 17 00:00:00 2001 From: Lucas Sorenson Date: Wed, 10 Feb 2021 06:36:19 -0500 Subject: [PATCH] fix(learn): update seed code for D3.js challenge (#40699) Co-authored-by: Nicholas Carrigan (he/him) Co-authored-by: Lucas Sorenson --- .../change-the-presentation-of-a-bar-chart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/change-the-presentation-of-a-bar-chart.md b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/change-the-presentation-of-a-bar-chart.md index 7be3951207..819f105ecb 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/change-the-presentation-of-a-bar-chart.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/change-the-presentation-of-a-bar-chart.md @@ -113,10 +113,10 @@ assert( .bar { width: 25px; height: 100px; - /* Only change code below this line */ + /* Add your code below this line */ - /* Only change code above this line */ + /* Add your code above this line */ display: inline-block; background-color: blue; } @@ -130,7 +130,7 @@ assert( .enter() .append("div") .attr("class", "bar") - .style("height", (d) => (d + "px")) + .style("height", (d) => (d + "px")) // Change this line ```