From e65c3a7c950afe2210585fa63f055198e26bd6c1 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Wed, 25 Apr 2018 17:37:44 -0700 Subject: [PATCH] Fix parameter annotation --- core/zoom_controls.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/zoom_controls.js b/core/zoom_controls.js index c9d67afd2..8359a28f9 100644 --- a/core/zoom_controls.js +++ b/core/zoom_controls.js @@ -160,7 +160,7 @@ Blockly.ZoomControls.prototype.position = function() { /** * Create the zoom in icon and its event handler. - * @param {number} rnd The random number to use to identify the clip paths. + * @param {string} rnd The random string to use to identify the clip paths. * @private */ Blockly.ZoomControls.prototype.createZoomOutSvg_ = function(rnd) { @@ -207,7 +207,7 @@ Blockly.ZoomControls.prototype.createZoomOutSvg_ = function(rnd) { /** * Create the zoom out icon and its event handler. - * @param {number} rnd The random number to use to identify the clip paths. + * @param {string} rnd The random string to use to identify the clip paths. * @private */ Blockly.ZoomControls.prototype.createZoomInSvg_ = function(rnd) { @@ -255,7 +255,7 @@ Blockly.ZoomControls.prototype.createZoomInSvg_ = function(rnd) { /** * Create the zoom reset icon and its event handler. - * @param {number} rnd The random number to use to identify the clip paths. + * @param {string} rnd The random string to use to identify the clip paths. * @private */ Blockly.ZoomControls.prototype.createZoomResetSvg_ = function(rnd) {