From 817325d68e2aa3ee7bbfc2d7f453c7e656150e79 Mon Sep 17 00:00:00 2001 From: Ty Mick Date: Tue, 11 Aug 2020 13:02:09 -0400 Subject: [PATCH] Change comma to semicolon (#39258) --- .../create-a-bar-for-each-data-point-in-the-set.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/create-a-bar-for-each-data-point-in-the-set.english.md b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/create-a-bar-for-each-data-point-in-the-set.english.md index bd7f5e515b..7f31b686ae 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/create-a-bar-for-each-data-point-in-the-set.english.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/create-a-bar-for-each-data-point-in-the-set.english.md @@ -23,7 +23,7 @@ There are a few differences working with rect elements instead of < ## Instructions
-Use the data(), enter(), and append() methods to create and append a rect for each item in dataset. The bars should display all on top of each other, this will be fixed in the next challenge. +Use the data(), enter(), and append() methods to create and append a rect for each item in dataset. The bars should display all on top of each other; this will be fixed in the next challenge.
## Tests