From 3f10dab390dc8e325ca209674f4b23276b41c3d8 Mon Sep 17 00:00:00 2001 From: sd Date: Wed, 17 Apr 2024 12:01:40 +0200 Subject: [PATCH] fix readme typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d46c06b..650219c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ they are often running on not that powerful big servers. Take a look at the [examples](https://github.com/sebadob/s3-simple/tree/main/examples), but basically: ```rust -let bucket = Bucket::try_from_env() ?; +let bucket = Bucket::try_from_env()?; // upload bucket.put("test.txt", b"Hello S3").await?;