Skip to content

Commit 117f18e

Browse files
committed
fix: remove redundant explicit link target in rustdoc
Fixes rustdoc warning about redundant explicit links. Changed [AdaBoost](AdaBoost) to [AdaBoost] as recommended by rustdoc linter.
1 parent 0a66420 commit 117f18e

File tree

1 file changed

+1
-1
lines changed
  • algorithms/linfa-ensemble/src

1 file changed

+1
-1
lines changed

algorithms/linfa-ensemble/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//! This crate (`linfa-ensemble`), provides pure Rust implementations of popular ensemble techniques, such as
77
//! * [Boostrap Aggregation](EnsembleLearner)
88
//! * [Random Forest](RandomForest)
9-
//! * [AdaBoost](AdaBoost)
9+
//! * [AdaBoost]
1010
//!
1111
//! ## Bootstrap Aggregation (aka Bagging)
1212
//!

0 commit comments

Comments
 (0)