From: Robert Konigsberg Date: Thu, 3 Jan 2013 20:14:37 +0000 (-0500) Subject: s/String/string in jsdoc for dygraph-options.js. X-Git-Tag: v1.0.0~133 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=a4aceb34724b0113fbedc3ec204a660300fdfb82;p=dygraphs.git s/String/string in jsdoc for dygraph-options.js. --- diff --git a/dygraph-options.js b/dygraph-options.js index f059ff9..4e859de 100644 --- a/dygraph-options.js +++ b/dygraph-options.js @@ -190,7 +190,7 @@ DygraphOptions.prototype.reparseSeries = function() { /** * Get a global value. * - * @param {String} name the name of the option. + * @param {string} name the name of the option. */ DygraphOptions.prototype.get = function(name) { var result = this.getGlobalUser_(name); @@ -221,8 +221,8 @@ DygraphOptions.prototype.getGlobalDefault_ = function(name) { * Get a value for a specific axis. If there is no specific value for the axis, * the global value is returned. * - * @param {String} name the name of the option. - * @param {String|number} axis the axis to search. Can be the string representation + * @param {string} name the name of the option. + * @param {string|number} axis the axis to search. Can be the string representation * ("y", "y2") or the axis number (0, 1). */ DygraphOptions.prototype.getForAxis = function(name, axis) { @@ -262,8 +262,8 @@ DygraphOptions.prototype.getForAxis = function(name, axis) { * Get a value for a specific series. If there is no specific value for the series, * the value for the axis is returned (and afterwards, the global value.) * - * @param {String} name the name of the option. - * @param {String|number} series the series to search. Can be the string representation + * @param {string} name the name of the option. + * @param {string|number} series the series to search. Can be the string representation * or 0-offset series number. */ DygraphOptions.prototype.getForSeries = function(name, series) {