From fe0aeb37d7fc45aa58c3944ca7ffd1155cc1f8fb Mon Sep 17 00:00:00 2001 From: cdrainxv Date: Wed, 1 Feb 2017 07:26:51 -0700 Subject: [PATCH] Added a comma to seperate x and y coordinates pairs --- .../04-data-visualization/data-visualization-with-d3.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 63a3ce72c3..bb5406a3dc 100644 --- a/seed/challenges/04-data-visualization/data-visualization-with-d3.json +++ b/seed/challenges/04-data-visualization/data-visualization-with-d3.json @@ -2104,7 +2104,7 @@ " .data(dataset)", " .enter()", " .append(\"text\")", - " .text((d) => (d[0] + ", + " .text((d) => (d[0] + \", \"", " + d[1]))", " // Add your code below this line", " ", @@ -2276,4 +2276,4 @@ } } ] -} \ No newline at end of file +}