mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-12-04 21:21:06 -05:00
Fixed a typo in watchers.ListWatcher
This commit is contained in:
parent
3597aa9a49
commit
23ca0897d3
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ public class ListWatcher extends Sprite {
|
|||
//------------------------------
|
||||
|
||||
public function updateWatcher(i:int, readOnly:Boolean, interp:Interpreter):void {
|
||||
// Called by list primitives. Record access to entry at i and if list contents has changed.
|
||||
// Called by list primitives. Record access to entry at i and whether list contents have changed.
|
||||
// readOnly should be true for read operations, false for operations that change the list.
|
||||
// Note: To reduce the cost of list operations, this function merely records changes,
|
||||
// leaving the more time-consuming work of updating the visual feedback to step(), which
|
||||
|
|
Loading…
Reference in a new issue