From 2ecffd96b18e0fdaa65e7a88fa7c83f90dab5b05 Mon Sep 17 00:00:00 2001 From: Berkan Sasmaz Date: Tue, 30 Sep 2025 16:39:41 +0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../POST.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md index a02b80cc48..7ddc045255 100644 --- a/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md +++ b/docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md @@ -176,7 +176,7 @@ namespace BlobStoringDemo Here, we are doing the followings: - Injecting the `IBlobContainer` service. -- Saving the BLOB data to the database with the `SaveAsync` method. (_it allows to use byte arrays or streams_) +- Saving the BLOB data to the database with the `SaveAsync` method. (_it allows you to use byte arrays or streams_) - Retrieving the BLOB data from the database with the `GetAllBytesAsync` method. - Checking if the BLOB exists with the `ExistsAsync` method. - Deleting the BLOB data from the database with the `DeleteAsync` method.