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 b676b3ff2 fix: typo error in 0429_init_from_iter.md (#6203) b676b3ff2 is described below commit b676b3ff2cbcf72d45304e2517ecb702850ec74e Author: warjiang <1096409...@qq.com> AuthorDate: Wed May 21 10:23:12 2025 +0800 fix: typo error in 0429_init_from_iter.md (#6203) --- core/src/docs/rfcs/0429_init_from_iter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/docs/rfcs/0429_init_from_iter.md b/core/src/docs/rfcs/0429_init_from_iter.md index 956957ce0..bde1dcdd2 100644 --- a/core/src/docs/rfcs/0429_init_from_iter.md +++ b/core/src/docs/rfcs/0429_init_from_iter.md @@ -15,7 +15,7 @@ To init OpenDAL operators, users have to init an accessor first. let root = &env::var("OPENDAL_S3_ROOT").unwrap_or_else(|_| "/".to_string()); let root = format!("/{}/{}", root, uuid::Uuid::new_v4()); -let mut builder = opedal::services::s3::Backend::build(); +let mut builder = opendal::services::s3::Backend::build(); builder.root(&root); builder.bucket(&env::var("OPENDAL_S3_BUCKET").expect("OPENDAL_S3_BUCKET must set")); builder.endpoint(&env::var("OPENDAL_S3_ENDPOINT").unwrap_or_default());