We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05e854c commit 5b931a9Copy full SHA for 5b931a9
1 file changed
src/logspace.rs
@@ -68,12 +68,12 @@ impl<F> ExactSizeIterator for Logspace<F> where Logspace<F>: Iterator {}
68
69
/// An iterator of a sequence of logarithmically spaced numbers.
70
///
71
-/// The `Logspace` has `n` elements, where the first element is `base.powf(a)`
+/// The [`Logspace`] has `n` elements, where the first element is `base.powf(a)`
72
/// and the last element is `base.powf(b)`. If `base` is negative, this
73
/// iterator will return all negative values.
74
75
-/// The iterator element type is `F`, where `F` must implement `Float`, e.g.
76
-/// `f32` or `f64`.
+/// The iterator element type is `F`, where `F` must implement [`Float`], e.g.
+/// [`f32`] or [`f64`].
77
78
/// **Panics** if converting `n - 1` to type `F` fails.
79
#[inline]
0 commit comments