diff --git a/algorithms/linfa-clustering/src/dbscan/hyperparams.rs b/algorithms/linfa-clustering/src/dbscan/hyperparams.rs index 57cf5ad0d..ac22621a5 100644 --- a/algorithms/linfa-clustering/src/dbscan/hyperparams.rs +++ b/algorithms/linfa-clustering/src/dbscan/hyperparams.rs @@ -82,7 +82,7 @@ impl, N: NearestNeighbour> ParamGuard for DbscanParams< impl, N: NearestNeighbour> TransformGuard for DbscanParams {} impl, N: NearestNeighbour> DbscanValidParams { - /// Nearest neighbour algorithm used for range queries + /// Maximum distance between two points to be considered neighbors pub fn tolerance(&self) -> F { self.tolerance }