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