You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opendal.apache.org by xu...@apache.org on 2023/03/19 10:11:53 UTC

[incubator-opendal] branch main updated: doc: Update README.md for quickstart (#1650)

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/incubator-opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new a052eaa6 doc: Update README.md for quickstart (#1650)
a052eaa6 is described below

commit a052eaa63ba28717137deb4294c164b93bd6744a
Author: xunfeng <xu...@gmail.com>
AuthorDate: Sun Mar 19 18:11:49 2023 +0800

    doc: Update README.md for quickstart (#1650)
    
    update README
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index d6d007ac..5168024b 100644
--- a/README.md
+++ b/README.md
@@ -37,7 +37,7 @@ async fn main() -> Result<()> {
     builder.bucket("test");
 
     // Init an operator
-    let op = Operator::create(builder)?
+    let op = Operator::new(builder)?
         // Init with logging layer enabled.
         .layer(LoggingLayer::default())
         .finish();