From 631c97817482b20b1213e42795e1365861d2a7e1 Mon Sep 17 00:00:00 2001 From: Neil Fraser Date: Fri, 20 Oct 2017 13:28:54 -0700 Subject: [PATCH] Fix typos. --- core/extensions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/extensions.js b/core/extensions.js index c808f4527..28999e981 100644 --- a/core/extensions.js +++ b/core/extensions.js @@ -325,7 +325,7 @@ Blockly.Extensions.buildTooltipForDropdown = function(dropdownName, if (document) { // Relies on document.readyState Blockly.utils.runAfterPageLoad(function() { for (var key in lookupTable) { - // Will print warnings is reference is missing. + // Will print warnings if reference is missing. Blockly.utils.checkMessageReferences(lookupTable[key]); } }); @@ -405,7 +405,7 @@ Blockly.Extensions.buildTooltipWithFieldValue = function(msgTemplate, // document object, in which case skip the validation. if (document) { // Relies on document.readyState Blockly.utils.runAfterPageLoad(function() { - // Will print warnings is reference is missing. + // Will print warnings if reference is missing. Blockly.utils.checkMessageReferences(msgTemplate); }); }