Fix screenToWsCoordinates jsdoc (#2737)

Fix typos in jsdoc
This commit is contained in:
Sam El-Husseini
2019-07-30 10:08:52 -07:00
committed by GitHub
parent d6acc66c4d
commit 4622c95629

View File

@@ -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) {