This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new aa77bc0b23 docs: fix reference in rustdocs of FuturePresignWrite
(#4097)
aa77bc0b23 is described below
commit aa77bc0b23f1d72d8b1d00afafa3e9693e9279a8
Author: Kirill Zaborsky <[email protected]>
AuthorDate: Tue Jan 30 11:34:20 2024 +0300
docs: fix reference in rustdocs of FuturePresignWrite (#4097)
looks to be a copy-paste error
---
core/src/types/operator/operator_futures.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/types/operator/operator_futures.rs
b/core/src/types/operator/operator_futures.rs
index fda23d1dff..d8c090a618 100644
--- a/core/src/types/operator/operator_futures.rs
+++ b/core/src/types/operator/operator_futures.rs
@@ -260,7 +260,7 @@ impl Future for FuturePresignRead {
}
}
-/// Future that generated by [`Operator::presign_read_with`].
+/// Future that generated by [`Operator::presign_write_with`].
///
/// Users can add more options by public functions provided by this struct.
pub struct FuturePresignWrite(pub(crate) OperatorFuture<(OpWrite, Duration),
PresignedRequest>);