Skip to content

Commit

Permalink
Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Jun 19, 2019
1 parent 1c51d8f commit e4b59fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scales/scale.linear.js
Expand Up @@ -22,8 +22,8 @@ module.exports = LinearScaleBase.extend({
var DEFAULT_MAX = 1;
var datasetIndex, meta, value, data, i, ilen;

function IDMatches(scaleMeta) {
return isHorizontal ? scaleMeta.xAxisID === me.id : scaleMeta.yAxisID === me.id;
function IDMatches(datasetMeta) {
return isHorizontal ? datasetMeta.xAxisID === me.id : datasetMeta.yAxisID === me.id;
}

// First Calculate the range
Expand Down

0 comments on commit e4b59fc

Please sign in to comment.