From a0119cc8bd4661719b7b08e52de18c07d46b46c0 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 2 Feb 2021 13:57:11 -0500 Subject: [PATCH] Added spaces to JSDoc links so text doesn't bleed into URL --- modules/voronoi.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/voronoi.js b/modules/voronoi.js index 04373d73..f18e64c3 100644 --- a/modules/voronoi.js +++ b/modules/voronoi.js @@ -1,7 +1,7 @@ class Voronoi { /** - * Creates a Voronoi diagram from the given Delaunator, a list of points, and the number of points. The Voronoi diagram is constructed using (I think) the {@link https://en.wikipedia.org/wiki/Bowyer%E2%80%93Watson_algorithm|Bowyer-Watson Algorithm} - * @param {{triangles: Uint32Array, halfedges: Int32Array}} delaunay A {@link https://github.com/mapbox/delaunator/blob/master/index.js|Delaunator} instance + * Creates a Voronoi diagram from the given Delaunator, a list of points, and the number of points. The Voronoi diagram is constructed using (I think) the {@link https://en.wikipedia.org/wiki/Bowyer%E2%80%93Watson_algorithm |Bowyer-Watson Algorithm} + * @param {{triangles: Uint32Array, halfedges: Int32Array}} delaunay A {@link https://github.com/mapbox/delaunator/blob/master/index.js |Delaunator} instance * @param {[number, number][]} points A list of coordinates. * @param {number} pointsN The number of points. */