From 17dde0d59338ce6550cbbb0019b27e6de428e4c1 Mon Sep 17 00:00:00 2001 From: Jensen Date: Mon, 20 Apr 2015 16:17:48 -0700 Subject: [PATCH] Remove excess whitespace in Whitespace section --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a60d84f..3679b4a9 100644 --- a/README.md +++ b/README.md @@ -891,7 +891,7 @@ // bad var leds = stage.selectAll('.led').data(data).enter().append('svg:svg').classed('led', true) - .attr('width', (radius + margin) * 2).append('svg:g') + .attr('width', (radius + margin) * 2).append('svg:g') .attr('transform', 'translate(' + (radius + margin) + ',' + (radius + margin) + ')') .call(tron.led); @@ -900,7 +900,7 @@ .data(data) .enter().append('svg:svg') .classed('led', true) - .attr('width', (radius + margin) * 2) + .attr('width', (radius + margin) * 2) .append('svg:g') .attr('transform', 'translate(' + (radius + margin) + ',' + (radius + margin) + ')') .call(tron.led);