From 04b36cb1a183f7a83bddf33cac946daba41d9683 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Thu, 8 Dec 2022 22:37:50 -0800 Subject: [PATCH] fix(core): Fix typo in points.mjs comment --- packages/core/src/point.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/point.mjs b/packages/core/src/point.mjs index d10c166bab2..d6e49f51aff 100644 --- a/packages/core/src/point.mjs +++ b/packages/core/src/point.mjs @@ -320,7 +320,7 @@ Point.prototype.sitsRoughlyOn = function (that) { * Returns slope of a line made by this Point and that Point * * @param {Point} that - The Point that forms the line together with this Point - * @return {float} slote - The slope of the line made by this Point and that Point + * @return {float} slope - The slope of the line made by this Point and that Point */ Point.prototype.slope = function (that) { return (that.__check().y - this.__check().y) / (that.x - this.x)