diff --git a/src/vm/extensions/block/index.js b/src/vm/extensions/block/index.js index 9dfd80d..9a90058 100644 --- a/src/vm/extensions/block/index.js +++ b/src/vm/extensions/block/index.js @@ -436,7 +436,7 @@ class MbitMore { /** * The most recently received button events for each buttons. - * @type {Object} - Store of buttons which has events. + * @type {Object} * @private */ this.buttonEvents = {}; @@ -446,7 +446,7 @@ class MbitMore { /** * The most recently received gesture events. - * @type {Object } - Store of gesture ID and timestamp. + * @type {Object.} * @private */ this.gestureEvents = {}; @@ -454,14 +454,14 @@ class MbitMore { /** * The most recently received events for each pin. - * @type {Object} - Store of pins which has events. + * @type {Object} * @private */ this._pinEvents = {}; /** * The most recently received data from micro:bit. - * @type {Object} - Store of received data + * @type {Object} * @private */ this.receivedData = {}; @@ -2126,25 +2126,25 @@ class MbitMoreBlocks { /** * The previous timestamps of button events. - * @type {Object.>} button ID to object with event and timestamp. + * @type {Object.>} */ this.prevButtonEvents = {}; /** * The previous timestamps of gesture events. - * @type {Object.} key: event ID, value: timestamp. + * @type {Object.} */ this.prevGestureEvents = {}; /** * The previous timestamps of pin events. - * @type {Object.>} pin index to object with event and timestamp. + * @type {Object.>} */ this.prevPinEvents = {}; /** * The previous timestamps of messages. - * @type {Object.} pin index to object with event and timestamp. + * @type {Object.} */ this.prevReceivedData = {}; }