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:51:37 UTC

[incubator-opendal] branch main updated: doc: uncomment the use expr for operator example (#1685)

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 8a89073e doc: uncomment the use expr for operator example (#1685)
8a89073e is described below

commit 8a89073e40391fa9fc1bda6f7348d02d323e77db
Author: Wei Zhang <kw...@gmail.com>
AuthorDate: Sun Mar 19 18:51:32 2023 +0800

    doc: uncomment the use expr for operator example (#1685)
    
    Signed-off-by: Zhang Wei <kw...@gmail.com>
---
 core/src/types/operator/operator.rs | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/src/types/operator/operator.rs b/core/src/types/operator/operator.rs
index d114de8c..0c06ef34 100644
--- a/core/src/types/operator/operator.rs
+++ b/core/src/types/operator/operator.rs
@@ -790,9 +790,9 @@ impl Operator {
     /// ```no_run
     /// # use anyhow::Result;
     /// # use futures::io;
-    /// # use opendal::Operator;
-    /// # use opendal::EntryMode;
-    /// # use futures::TryStreamExt;
+    /// use opendal::Operator;
+    /// use opendal::EntryMode;
+    /// use futures::TryStreamExt;
     /// use opendal::Metakey;
     /// # #[tokio::main]
     /// # async fn test(op: Operator) -> Result<()> {
@@ -841,9 +841,9 @@ impl Operator {
     /// ```no_run
     /// # use anyhow::Result;
     /// # use futures::io;
-    /// # use opendal::Operator;
-    /// # use opendal::EntryMode;
-    /// # use futures::TryStreamExt;
+    /// use opendal::Operator;
+    /// use opendal::EntryMode;
+    /// use futures::TryStreamExt;
     /// use opendal::Metakey;
     /// #
     /// # #[tokio::main]