Fixing typo on "programmatically". (#3654)

This commit is contained in:
Monica Kozbial
2020-01-24 15:10:22 -08:00
committed by GitHub
parent 07e9e21527
commit e2b510662c
5 changed files with 6 additions and 6 deletions

View File

@@ -898,7 +898,7 @@ Blockly.Blocks['procedures_callnoreturn'] = {
// in most cases the old group should be ''
var oldGroup = Blockly.Events.getGroup();
if (oldGroup) {
// This should only be possible programatically and may indicate a problem
// This should only be possible programmatically and may indicate a problem
// with event grouping. If you see this message please investigate. If the
// use ends up being valid we may need to reorder events in the undo stack.
console.log('Saw an existing group while responding to a definition change');

View File

@@ -205,7 +205,7 @@ Blockly.Field.prototype.getText_;
* clicked. Blockly will automatically set the field as clickable if this
* method is defined.
* @param {Event=} opt_e Optional mouse event that triggered the field to open,
* or undefined if triggered programatically.
* or undefined if triggered programmatically.
* @return {void}
* @protected
*/
@@ -605,7 +605,7 @@ Blockly.Field.prototype.render_ = function() {
/**
* Show an editor when the field is clicked only if the field is clickable.
* @param {Event=} opt_e Optional mouse event that triggered the field to open,
* or undefined if triggered programatically.
* or undefined if triggered programmatically.
* @package
*/
Blockly.Field.prototype.showEditor = function(opt_e) {

View File

@@ -257,7 +257,7 @@ Blockly.FieldAngle.prototype.render_ = function() {
/**
* Create and show the angle field's editor.
* @param {Event=} opt_e Optional mouse event that triggered the field to open,
* or undefined if triggered programatically.
* or undefined if triggered programmatically.
* @private
*/
Blockly.FieldAngle.prototype.showEditor_ = function(opt_e) {

View File

@@ -268,7 +268,7 @@ Blockly.FieldDropdown.prototype.createSVGArrow_ = function() {
/**
* Create a dropdown menu under the text.
* @param {Event=} opt_e Optional mouse event that triggered the field to open,
* or undefined if triggered programatically.
* or undefined if triggered programmatically.
* @private
*/
Blockly.FieldDropdown.prototype.showEditor_ = function(opt_e) {

View File

@@ -279,7 +279,7 @@ Blockly.FieldTextInput.prototype.setSpellcheck = function(check) {
/**
* Show the inline free-text editor on top of the text.
* @param {Event=} _opt_e Optional mouse event that triggered the field to open,
* or undefined if triggered programatically.
* or undefined if triggered programmatically.
* @param {boolean=} opt_quietInput True if editor should be created without
* focus. Defaults to false.
* @protected