fixed typo, "is" changed to "in" (#38032)

This commit is contained in:
Ronald van der Bergh
2020-01-08 20:58:31 -06:00
committed by Randell Dawson
parent 059e826465
commit fd36d6db37

View File

@ -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 <code>call()</code> method.
The y-axis works is the same way, except the <code>translate</code> argument is in the form (x, 0). Because <code>translate</code> is a string in the <code>attr()</code> method above, you can use concatenation to include variable values for its arguments.
The y-axis works in the same way, except the <code>translate</code> argument is in the form (x, 0). Because <code>translate</code> is a string in the <code>attr()</code> method above, you can use concatenation to include variable values for its arguments.
</section>
## Instructions