From 6fb95f90389bfccc54a7b04b070e8b356174ac8b Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Thu, 28 Mar 2019 14:54:51 -0700 Subject: [PATCH] Consistent speling. --- core/block_svg.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/block_svg.js b/core/block_svg.js index 1bad283fd..86b6550aa 100644 --- a/core/block_svg.js +++ b/core/block_svg.js @@ -986,10 +986,9 @@ Blockly.BlockSvg.prototype.setBorderColour_ = function(rgb, colourTertiary) { * Sets the colour of shadow blocks. * @param {!string} rgb Primary colour of the block. * @param {?string} colourSecondary Colour for shadow block. - * @return {!string} hexColour The background color of the block. + * @return {!string} hexColour The background colour of the block. */ -Blockly.BlockSvg.prototype.setShadowColour_ = function( - rgb, colourSecondary) { +Blockly.BlockSvg.prototype.setShadowColour_ = function(rgb, colourSecondary) { var hexColour; if (colourSecondary) { this.svgPathLight_.style.display = 'none';