summaryrefslogtreecommitdiffstats
path: root/src/exhaustive.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/exhaustive.rs')
-rw-r--r--src/exhaustive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exhaustive.rs b/src/exhaustive.rs
index 909edda..221641c 100644
--- a/src/exhaustive.rs
+++ b/src/exhaustive.rs
@@ -5,7 +5,7 @@ use crate::{ExactNeighbors, NearestNeighbors, Neighborhood};
use std::iter::FromIterator;
-/// A [NearestNeighbors] implementation that does exhaustive search.
+/// A [`NearestNeighbors`] implementation that does exhaustive search.
#[derive(Debug)]
pub struct ExhaustiveSearch<T>(Vec<T>);