Update comment

This commit is contained in:
Rachel Fenichel 2018-05-15 17:09:08 -07:00
parent 91af54d85a
commit bcb7c29b6d
3 changed files with 6 additions and 3 deletions

View file

@ -55,7 +55,8 @@ goog.require('goog.string');
* @param {?string} prototypeName Name of the language object containing
* type-specific functions for this block.
* @param {string=} opt_id Optional ID. Use this ID if provided, otherwise
* create a new ID.
* create a new ID. If the ID conflicts with an in-use ID, a new one will
* be generated.
* @constructor
*/
Blockly.Block = function(workspace, prototypeName, opt_id) {

View file

@ -52,7 +52,8 @@ goog.require('goog.userAgent');
* @param {?string} prototypeName Name of the language object containing
* type-specific functions for this block.
* @param {string=} opt_id Optional ID. Use this ID if provided, otherwise
* create a new ID.
* create a new ID. If the ID conflicts with an in-use ID, a new one will
* be generated.
* @extends {Blockly.Block}
* @constructor
*/

View file

@ -41,7 +41,8 @@ goog.require('goog.math.Coordinate');
* @param {number} height Height of the comment.
* @param {number} width Width of the comment.
* @param {string=} opt_id Optional ID. Use this ID if provided, otherwise
* create a new ID.
* create a new ID. If the ID conflicts with an in-use ID, a new one will
* be generated.
* @constructor
*/
Blockly.WorkspaceComment = function(workspace, content, height, width, opt_id) {