From c2bb1e3123966ae3daa4bf43f4a7b108fb99ec57 Mon Sep 17 00:00:00 2001 From: Paul Kaplan Date: Fri, 27 Apr 2018 09:21:38 -0400 Subject: [PATCH] Add comment to jsdoc typedef where it belongs. --- src/blocks/scratch3_looks.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/blocks/scratch3_looks.js b/src/blocks/scratch3_looks.js index b561682be..c676aaa5c 100644 --- a/src/blocks/scratch3_looks.js +++ b/src/blocks/scratch3_looks.js @@ -11,6 +11,8 @@ const uid = require('../util/uid'); * See _renderBubble for explanation of this optimization. * @property {string} text - the text of the bubble. * @property {string} type - the type of the bubble, "say" or "think" + * @property {?string} usageId - ID indicating the most recent usage of the say/think bubble. + * Used for comparison when determining whether to clear a say/think bubble. */ class Scratch3LooksBlocks { @@ -46,7 +48,7 @@ class Scratch3LooksBlocks { skinId: null, text: '', type: 'say', - usageId: null // ID for hiding a timed say/think block. + usageId: null }; }