From 0eacbd72175965a776afd758fd9f0d1b0a78c33d Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Wed, 14 Aug 2019 15:44:43 -0700 Subject: [PATCH] Fixed typo. --- core/ws_comment_events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ws_comment_events.js b/core/ws_comment_events.js index ce8f2a847..06560720b 100644 --- a/core/ws_comment_events.js +++ b/core/ws_comment_events.js @@ -90,7 +90,7 @@ Blockly.Events.CommentBase.prototype.toJson = function() { * @param {!Object} json JSON representation. */ Blockly.Events.CommentBase.prototype.fromJson = function(json) { - Blockly.Events.COmmentBase.superClass_.fromJson.call(this, json); + Blockly.Events.CommentBase.superClass_.fromJson.call(this, json); this.commentId = json['commentId']; };