From 4d4e7ac967455fa3be72c0599acd46396cfc0444 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Sat, 31 Aug 2013 00:07:04 -0400 Subject: [PATCH] datahandler mostly closurized, tests passing; down to 14 warnings --- datahandler/datahandler.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datahandler/datahandler.js b/datahandler/datahandler.js index 21f2975..100e7ee 100644 --- a/datahandler/datahandler.js +++ b/datahandler/datahandler.js @@ -174,9 +174,9 @@ handler.prototype.rollingAverage = function(series, rollPeriod, options) { * Computes the range of the data series (including confidence intervals). * * @param {!Array.<[!number,?number,?]>} series The series in the unified - * data format where series[i] = [x,y,{extras}]. + * data format where series[i] = [x, y, {extras}]. * @param {!Array.} dateWindow The x-value range to display with - * the format: [min,max]. + * the format: [min, max]. * @param {!DygraphOptions} options The dygraph options. * @return {Array.} The low and high extremes of the series in the * given window with the format: [low, high]. -- 2.7.4