From d7255ec1bd22b8ffb8f956de4beeede2a8d15456 Mon Sep 17 00:00:00 2001 From: Etienne Wodey Date: Mon, 21 Oct 2024 21:33:41 +0200 Subject: [PATCH] argmin-testfunctions: fix crosslinks in module docs --- crates/argmin-testfunctions/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/argmin-testfunctions/src/lib.rs b/crates/argmin-testfunctions/src/lib.rs index 31d1aa0fb..a5c1a5c4f 100644 --- a/crates/argmin-testfunctions/src/lib.rs +++ b/crates/argmin-testfunctions/src/lib.rs @@ -17,11 +17,11 @@ //! `_hessian`, respectively. The const generics variants are defined as //! `_derivative_const` and `_hessian_const`. //! -//! Some functions, such as `ackley`, `rosenbrock` and `rastrigin` come with additional optional -//! parameters which change the shape of the functions. These additional parameters are exposed in -//! `ackley_abc`, `rosenbrock_ab` and `rastrigin_a`. +//! Some functions, such as [`ackley()`], [`rosenbrock()`] and [`rastrigin()`] come with additional +//! optional parameters which change the shape of the functions. These additional parameters +//! are exposed in [`ackley_abc()`], [`rosenbrock_ab()`] and [`rastrigin_a()`]. //! -//! All functions are generic over their inputs and work with `[f64]` and `[f32]`. +//! All functions are generic over their inputs and work with [`f64`] and [`f32`]. //! //! ## Python wrapper //!