From 234c834d819bb0f7312e707ce747b533fa9b2184 Mon Sep 17 00:00:00 2001 From: Jason Davies Date: Thu, 10 May 2012 23:23:31 +0100 Subject: [PATCH] Add missing semicolon to mercator example. --- examples/mercator/mercator.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/mercator/mercator.html b/examples/mercator/mercator.html index 2db2a3914265b..3155d936ede3b 100644 --- a/examples/mercator/mercator.html +++ b/examples/mercator/mercator.html @@ -67,7 +67,7 @@

Mercator Projection

equator .attr("y1", xy([0, 0])[1]) - .attr("y2", xy([0, 0])[1]) + .attr("y2", xy([0, 0])[1]); }); function refresh() { @@ -77,7 +77,7 @@

Mercator Projection

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());