From 2b6ac6f7316fb7d12dbb956ef2720b33bb691e7c Mon Sep 17 00:00:00 2001 From: Balaji Sivasakthi <65065614+balaji-sivasakthi@users.noreply.github.com> Date: Thu, 9 Feb 2023 16:42:47 +0530 Subject: [PATCH] fix(curriculum): fix bad use of comma in d3 course "add a tooltip to a d3 element step" (#49296) --- .../data-visualization-with-d3/add-a-tooltip-to-a-d3-element.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-a-tooltip-to-a-d3-element.md b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-a-tooltip-to-a-d3-element.md index 28ee20400f9..e16937cbff9 100644 --- a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-a-tooltip-to-a-d3-element.md +++ b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-a-tooltip-to-a-d3-element.md @@ -8,7 +8,7 @@ dashedName: add-a-tooltip-to-a-d3-element # --description-- -A tooltip shows more information about an item on a page when the user hovers over that item. There are several ways to add a tooltip to a visualization, this challenge uses the SVG `title` element. +A tooltip shows more information about an item on a page when the user hovers over that item. There are several ways to add a tooltip to a visualization. This challenge uses the SVG `title` element. `title` pairs with the `text()` method to dynamically add data to the bars.