From: Dan Vanderkam Date: Sat, 31 Aug 2013 04:07:04 +0000 (-0400) Subject: datahandler mostly closurized, tests passing; down to 14 warnings X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=4d4e7ac967455fa3be72c0599acd46396cfc0444;p=dygraphs.git datahandler mostly closurized, tests passing; down to 14 warnings --- 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].