From 910aecb7e50a85fd7f7c4c7531ba7556e21f48cf Mon Sep 17 00:00:00 2001 From: sasensi Date: Mon, 12 Nov 2018 16:44:36 +0100 Subject: [PATCH] Fix CurveLocation#distance documentation @see tag was pointing to an inherited method which is not compatible with current jsdoc parser implementation. Problem is resolved by making reference point to the parent class owning the method. --- src/path/CurveLocation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/CurveLocation.js b/src/path/CurveLocation.js index 64c106af..bbbfe0b1 100644 --- a/src/path/CurveLocation.js +++ b/src/path/CurveLocation.js @@ -284,7 +284,7 @@ var CurveLocation = Base.extend(/** @lends CurveLocation# */{ * @bean * @type Number * @see Curve#getNearestLocation(point) - * @see Path#getNearestLocation(point) + * @see PathItem#getNearestLocation(point) */ getDistance: function() { return this._distance;