Skip to content

Commit

Permalink
Add missing semicolon to mercator example.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasondavies committed May 10, 2012
1 parent 1affcd2 commit 234c834
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/mercator/mercator.html
Expand Up @@ -67,7 +67,7 @@ <h3>Mercator Projection</h3>

equator
.attr("y1", xy([0, 0])[1])
.attr("y2", xy([0, 0])[1])
.attr("y2", xy([0, 0])[1]);
});

function refresh() {
Expand All @@ -77,7 +77,7 @@ <h3>Mercator Projection</h3>

equator
.attr("y1", xy([0, 0])[1])
.attr("y2", xy([0, 0])[1])
.attr("y2", xy([0, 0])[1]);

d3.select("#scale span")
.text(xy.scale());
Expand Down

0 comments on commit 234c834

Please sign in to comment.