From 8811759e1c986fff719af3a0cd2cbdfdcef8ae79 Mon Sep 17 00:00:00 2001 From: Ben McCann Date: Tue, 25 Apr 2017 20:29:40 -0700 Subject: [PATCH] Remove malformed comment Fixes https://github.com/chartjs/Chart.js/issues/4181 --- src/scales/scale.category.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scales/scale.category.js b/src/scales/scale.category.js index 0388baa00..cc5478adf 100644 --- a/src/scales/scale.category.js +++ b/src/scales/scale.category.js @@ -18,7 +18,7 @@ module.exports = function(Chart) { var data = this.chart.data; return (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels; }, - // Implement this so that + determineDataLimits: function() { var me = this; var labels = me.getLabels();