diff --git a/core/field_multilineinput.js b/core/field_multilineinput.js index dfb8d68c4..38b8db6c4 100644 --- a/core/field_multilineinput.js +++ b/core/field_multilineinput.js @@ -36,14 +36,12 @@ goog.require('Blockly.utils.userAgent'); * text as an argument and returns either the accepted text, a replacement * text, or null to abort the change. * @param {Object=} opt_config A map of options used to configure the field. - * See the [field creation documentation]{@link https://developers.google.com/blockly/guides/create-custom-blocks/fields/built-in-fields/text-input#creation} + * See the [field creation documentation]{@link https://developers.google.com/blockly/guides/create-custom-blocks/fields/built-in-fields/multiline-text-input#creation} * for a list of properties this parameter supports. * @extends {Blockly.FieldTextInput} * @constructor */ Blockly.FieldMultilineInput = function(opt_value, opt_validator, opt_config) { - // TODO: Once this field is documented the opt_config link should point to its - // creation documentation, rather than the text input field's. Blockly.FieldMultilineInput.superClass_.constructor.call(this, opt_value, opt_validator, opt_config);