From 4622c95629d2bea46c0e60d541d9bf25cd46c9ba Mon Sep 17 00:00:00 2001 From: Sam El-Husseini <16690124+samelhusseini@users.noreply.github.com> Date: Tue, 30 Jul 2019 10:08:52 -0700 Subject: [PATCH] Fix screenToWsCoordinates jsdoc (#2737) Fix typos in jsdoc --- core/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/utils.js b/core/utils.js index 1fba62ef7..3f9fc146f 100644 --- a/core/utils.js +++ b/core/utils.js @@ -588,10 +588,10 @@ Blockly.utils.getBlockTypeCounts = function(block, opt_stripFollowing) { /** * Converts screen coordinates to workspace coordinates. - * @param {Blockly.Workspace_Svg} ws The workspace to find the coordinates on. + * @param {Blockly.WorkspaceSvg} ws The workspace to find the coordinates on. * @param {Blockly.utils.Coordinate} screenCoordinates The screen coordinates to be * converted to workspace coordintaes - * @return {goog.math.Coorindate} The workspace coordinates. + * @return {goog.math.Coordinate} The workspace coordinates. * @package */ Blockly.utils.screenToWsCoordinates = function(ws, screenCoordinates) {