diff --git a/blocks/procedures.js b/blocks/procedures.js index c5b7a6307..e2d4147af 100644 --- a/blocks/procedures.js +++ b/blocks/procedures.js @@ -942,7 +942,8 @@ const procedureCallerGetDefMixin = function() { /** * @param {string} name The name of the procedure model to find. - * @param {string[]} params The param names of the procedure model to find. + * @param {Array} params The param names of the procedure model + * to find. * @return {IProcedureModel} The procedure model that was found. */ findProcedureModel_(name, params = []) { @@ -1308,7 +1309,7 @@ const procedureCallerOnChangeMixin = { * Creates a procedure definition block with the given name and params, * and returns the procedure model associated with it. * @param {string} name The name of the procedure to create. - * @param {string[]} params The names of the parameters to create. + * @param {Array} params The names of the parameters to create. * @return {IProcedureModel} The procedure model associated with the new * procedure definition block. */