mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Fix comments
This commit is contained in:
parent
3a697ae0ac
commit
a11d1be3fc
1 changed files with 2 additions and 2 deletions
|
@ -1073,7 +1073,7 @@ class VirtualMachine extends EventEmitter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Set a target variables value if it exists. Return whether it succeeded.
|
||||
* Set a target's variable's value. Return whether it succeeded.
|
||||
* @param {!string} targetId ID of the target which owns the variable.
|
||||
* @param {!string} variableId ID of the variable to set.
|
||||
* @param {!*} value The new value of that variable.
|
||||
|
@ -1092,7 +1092,7 @@ class VirtualMachine extends EventEmitter {
|
|||
}
|
||||
|
||||
/**
|
||||
* Set a target variables value if it exists. Return whether it succeeded.
|
||||
* Get a target's variable's value. Return null if the target or variable does not exist.
|
||||
* @param {!string} targetId ID of the target which owns the variable.
|
||||
* @param {!string} variableId ID of the variable to set.
|
||||
* @returns {?*} The value of the variable, or null if it could not be looked up.
|
||||
|
|
Loading…
Reference in a new issue