refactor: Fix

This commit is contained in:
Manuel Raimann
2026-01-30 18:13:02 +01:00
parent 9fd6fbea1f
commit 39e8675988
+1 -1
View File
@@ -1043,7 +1043,7 @@ impl Study<f64> {
/// let x = trial.suggest_float("x", -10.0, 10.0)?;
/// // Async objective function (e.g., network request)
/// let value = x * x;
/// Ok::<_, optimize::TpeError>((trial, value))
/// Ok::<_, optimizer::TpeError>((trial, value))
/// })
/// .await?;
///