From 61f76e8d1d84a61527bb827e844efc7bd5991fdd Mon Sep 17 00:00:00 2001 From: alschmiedt Date: Thu, 10 Jun 2021 15:36:46 -0700 Subject: [PATCH] PR Comments --- core/block_dragger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/block_dragger.js b/core/block_dragger.js index 10b245bf4..1326719a7 100644 --- a/core/block_dragger.js +++ b/core/block_dragger.js @@ -88,7 +88,7 @@ Blockly.BlockDragger = function(block, workspace) { * A list of all of the icons (comment, warning, and mutator) that are * on this block and its descendants. Moving an icon moves the bubble that * extends from it if that bubble is open. - * @type {Array.} + * @type {Array} * @protected */ this.dragIconData_ = Blockly.BlockDragger.initIconData_(block); @@ -179,7 +179,7 @@ Blockly.BlockDragger.prototype.startDrag = function( * Whether or not we should disconnect the block when a drag is started. * @param {boolean} healStack Whether or not to heal the stack after * disconnecting. - * @returns {boolean} True to disconnect the block, false otherwise. + * @return {boolean} True to disconnect the block, false otherwise. * @protected */ Blockly.BlockDragger.prototype.shouldDisconnect_ = function(healStack) {