mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Replace duplicate documentation on getProcedureParamNames
Replace the duplicate getProcedureDefintion documentation block above getProcedureParamNames.
This commit is contained in:
parent
ef961c5a4b
commit
888da915a5
1 changed files with 2 additions and 2 deletions
|
@ -164,9 +164,9 @@ class Blocks {
|
|||
}
|
||||
|
||||
/**
|
||||
* Get the procedure definition for a given name.
|
||||
* Get names of parameters for the given procedure.
|
||||
* @param {?string} name Name of procedure to query.
|
||||
* @return {?string} ID of procedure definition.
|
||||
* @return {?Array.<string>} List of param names for a procedure.
|
||||
*/
|
||||
getProcedureParamNames (name) {
|
||||
for (const id in this._blocks) {
|
||||
|
|
Loading…
Reference in a new issue