Make comments more consistent.

This commit is contained in:
Neil Fraser
2021-06-08 15:41:08 -07:00
committed by Neil Fraser
parent 6a6c630f8c
commit cff7b359f4
22 changed files with 75 additions and 76 deletions

View File

@@ -547,7 +547,7 @@ Blockly.FieldTextInput.prototype.isTabNavigable = function() {
*/
Blockly.FieldTextInput.prototype.getText_ = function() {
if (this.isBeingEdited_ && this.htmlInput_) {
// We are currently editing, return the html input value instead.
// We are currently editing, return the HTML input value instead.
return this.htmlInput_.value;
}
return null;