From 13cb64392f9eeb00511e12a8c3001555a61b3c28 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Wed, 21 Feb 2018 11:01:01 -0800 Subject: [PATCH] Fix some JsDoc annotations (#1650) --- core/gesture.js | 2 +- core/workspace.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/gesture.js b/core/gesture.js index 6c222ddfb..bc230040d 100644 --- a/core/gesture.js +++ b/core/gesture.js @@ -65,7 +65,7 @@ Blockly.Gesture = function(e, creatorWorkspace) { * How far the mouse has moved during this drag, in pixel units. * (0, 0) is at this.mouseDownXY_. * @type {goog.math.Coordinate} - * private + * @private */ this.currentDragDeltaXY_ = 0; diff --git a/core/workspace.js b/core/workspace.js index 6f7b06231..848899798 100644 --- a/core/workspace.js +++ b/core/workspace.js @@ -77,10 +77,10 @@ Blockly.Workspace = function(opt_options) { this.blockDB_ = Object.create(null); /** - * @type {!Blockly.VariableMap} * A map from variable type to list of variable names. The lists contain all * of the named variables in the workspace, including variables * that are not currently in use. + * @type {!Blockly.VariableMap} * @private */ this.variableMap_ = new Blockly.VariableMap(this);