Consistent speling.

This commit is contained in:
Neil Fraser
2019-03-28 14:54:51 -07:00
committed by Neil Fraser
parent 87385b0721
commit 6fb95f9038

View File

@@ -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';