Skip to content

Commit

Permalink
Oops... Didn't trigger JSDoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Jan 31, 2025
1 parent 1dcf49d commit 917e9c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kd-tree/index.d.mts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class TreeNode {
constructor(object: any, dimension: Number, parent?: TreeNode);
}

/*
/**
* The k-dimensional tree.
*/
export class KDTree {
Expand Down Expand Up @@ -91,7 +91,7 @@ export class KDTree {
constructor(points: ArrayLike<ArrayLike<Number>>, metric: Function, dimensions: ArrayLike<Number>);
}

/*
/**
* Binary heap implementation from http://eloquentjavascript.net/appendix2.html . Rewritten into modern syntax.
* I don't know how this specific implemention work yet, so no docs.
*/
Expand Down

0 comments on commit 917e9c2

Please sign in to comment.