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 d2abd75e2 docs: fix a typo on the landing page (#2460)
d2abd75e2 is described below
commit d2abd75e25770cf162caba64bc0ce1bc9c3225fd
Author: Cyandev <[email protected]>
AuthorDate: Tue Jun 13 19:50:40 2023 +0800
docs: fix a typo on the landing page (#2460)
---
website/src/components/HomepageFeatures/_feature_languages.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/website/src/components/HomepageFeatures/_feature_languages.mdx
b/website/src/components/HomepageFeatures/_feature_languages.mdx
index d12773783..570778a24 100644
--- a/website/src/components/HomepageFeatures/_feature_languages.mdx
+++ b/website/src/components/HomepageFeatures/_feature_languages.mdx
@@ -11,7 +11,7 @@ import TabItem from '@theme/TabItem';
```rust
use opendal::Operator;
-let op = Operator::via_map(Scheme::Fs, HashMap::new()?;
+let op = Operator::via_map(Scheme::Fs, HashMap::new())?;
op.read("path/to/file").await?;
```