From a89a5ce29a7c6c78d337953479097b435b69fea6 Mon Sep 17 00:00:00 2001 From: Lee Gillentine Date: Sat, 26 Jan 2013 21:07:12 -0500 Subject: [PATCH] Grammar police: fixing typos --- examples/bullet.html | 2 +- examples/bulletChart.html | 2 +- examples/cumulativeLineChart.html | 2 +- examples/horizon.html | 2 +- examples/lineWithFisheyeChart.html | 2 +- src/core.js | 2 +- src/models/cumulativeLineChart.js | 2 +- src/models/line.js | 2 +- src/models/lineWithFisheye.js | 2 +- src/models/scatter.js | 4 ++-- src/utils.js | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/bullet.html b/examples/bullet.html index 26ed4ae..5ba079e 100644 --- a/examples/bullet.html +++ b/examples/bullet.html @@ -40,7 +40,7 @@ var chart = nv.models.bullet() */ ]; - //TODO: to be consistent with other models, shouild be appending a g to an already made svg, not creating the svg element + //TODO: to be consistent with other models, should be appending a g to an already made svg, not creating the svg element var vis = d3.select("#chart").selectAll("svg") .data(data) .enter().append("svg") diff --git a/examples/bulletChart.html b/examples/bulletChart.html index e49e659..229b766 100644 --- a/examples/bulletChart.html +++ b/examples/bulletChart.html @@ -41,7 +41,7 @@ var chart = nv.models.bulletChart() */ ]; - //TODO: to be consistent with other models, shouild be appending a g to an already made svg, not creating the svg element + //TODO: to be consistent with other models, should be appending a g to an already made svg, not creating the svg element var vis = d3.select("#chart").selectAll("svg") .data(data) .enter().append("svg") diff --git a/examples/cumulativeLineChart.html b/examples/cumulativeLineChart.html index 610a822..5145eb4 100644 --- a/examples/cumulativeLineChart.html +++ b/examples/cumulativeLineChart.html @@ -48,7 +48,7 @@ svg {