From 114171ada8a9ab57a9231d06d620cc3d083a607f Mon Sep 17 00:00:00 2001 From: Andrew n marshall <9916202+AnmAtAnm@users.noreply.github.com> Date: Thu, 7 Feb 2019 10:22:36 -0800 Subject: [PATCH] language-neutral text -> language-neutral id --- tests/blocks/test_blocks.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/blocks/test_blocks.js b/tests/blocks/test_blocks.js index c3d9821c6..267b87abe 100644 --- a/tests/blocks/test_blocks.js +++ b/tests/blocks/test_blocks.js @@ -609,8 +609,8 @@ Blockly.TestBlocks.addDynamicDropdownOption_ = function() { if (text) { // Do not remove this log! Helps you know if it was added correctly. console.log('Adding option: ' + text); - // The option is an array containing human-readable text and - // language-neutral text. + // The option is an array containing human-readable text and a + // language-neutral id. Blockly.TestBlocks.dynamicDropdownOptions_.push( [text, 'OPTION' + Blockly.TestBlocks.dynamicDropdownOptions_.length]); } @@ -630,8 +630,8 @@ Blockly.TestBlocks.removeDynamicDropdownOption_ = function() { for (var i = 0, option; option = Blockly.TestBlocks.dynamicDropdownOptions_[i]; i++) { - // The option is an array containing human-readable text and - // language-neutral text, we'll compare against the human-readable text. + // The option is an array containing human-readable text and a + // language-neutral id, we'll compare against the human-readable text. if (option[0] == text) { // Do not remove this log! Helps you know if it was removed correctly. console.log('Removing option: ' + text);