From 39e8675988ab1353e28db91d08ea21918f65219e Mon Sep 17 00:00:00 2001 From: Manuel Raimann Date: Fri, 30 Jan 2026 18:13:02 +0100 Subject: [PATCH] refactor: Fix --- src/study.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/study.rs b/src/study.rs index 9c2b00d..be8a10a 100644 --- a/src/study.rs +++ b/src/study.rs @@ -1043,7 +1043,7 @@ impl Study { /// 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?; ///