From fd36d6db3702bbea72375fc8bc8535b9c95ab9da Mon Sep 17 00:00:00 2001
From: Ronald van der Bergh <30640637+rhvdbergh@users.noreply.github.com>
Date: Wed, 8 Jan 2020 20:58:31 -0600
Subject: [PATCH] fixed typo, "is" changed to "in" (#38032)
---
.../add-axes-to-a-visualization.english.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-axes-to-a-visualization.english.md b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-axes-to-a-visualization.english.md
index d9a785e827..fa0dbf93b1 100644
--- a/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-axes-to-a-visualization.english.md
+++ b/curriculum/challenges/english/04-data-visualization/data-visualization-with-d3/add-axes-to-a-visualization.english.md
@@ -24,7 +24,7 @@ svg.append("g")
```
The above code places the x-axis at the bottom of the SVG canvas. Then it's passed as an argument to the call()
method.
-The y-axis works is the same way, except the translate
argument is in the form (x, 0). Because translate
is a string in the attr()
method above, you can use concatenation to include variable values for its arguments.
+The y-axis works in the same way, except the translate
argument is in the form (x, 0). Because translate
is a string in the attr()
method above, you can use concatenation to include variable values for its arguments.
## Instructions