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 {