From 20cf17d8495f92561f5199eb9a8f8e9fef466813 Mon Sep 17 00:00:00 2001 From: barbiefan Date: Thu, 29 Feb 2024 11:49:26 +0400 Subject: [PATCH] docs(readme): fix missing brackets in readme examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca4d47c1f3..a2a075fd49 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ public class ExampleController : ControllerBase public async Task GetUrl(string bucketID) { return Ok(await minioClient.PresignedGetObjectAsync(new PresignedGetObjectArgs() - .WithBucket(bucketID) + .WithBucket(bucketID)) .ConfigureAwait(false)); } } @@ -82,7 +82,7 @@ public class ExampleFactoryController : ControllerBase var minioClient = minioClientFactory.CreateClient(); //Has optional argument to configure specifics return Ok(await minioClient.PresignedGetObjectAsync(new PresignedGetObjectArgs() - .WithBucket(bucketID) + .WithBucket(bucketID)) .ConfigureAwait(false)); } }