From 2e8f365c439b74d366d90718a24c237199d51992 Mon Sep 17 00:00:00 2001 From: nkaz001 Date: Tue, 3 Sep 2024 08:21:22 -0400 Subject: [PATCH] docs: fix the docstring. --- hftbacktest/src/backtest/data/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hftbacktest/src/backtest/data/reader.rs b/hftbacktest/src/backtest/data/reader.rs index 8f91eac..bbe31d5 100644 --- a/hftbacktest/src/backtest/data/reader.rs +++ b/hftbacktest/src/backtest/data/reader.rs @@ -255,7 +255,7 @@ where } } - /// Sets a [`DataPreprocessor`]. + /// Sets a [`DataPreprocess`]. pub fn preprocessor(self, preprocessor: Preprocessor) -> Self where Preprocessor: DataPreprocess + Sync + Send + 'static,