From 10daa9b5fc9cba38d86c203fc47d25ef80456275 Mon Sep 17 00:00:00 2001 From: microzchang <110015819+microzchang@users.noreply.github.com> Date: Fri, 9 Dec 2022 14:14:28 +0800 Subject: [PATCH] fix Typo in DeleteBlobResult documentation (#4178) --- .../azure-storage-blobs/inc/azure/storage/blobs/rest_client.hpp | 2 +- sdk/storage/azure-storage-blobs/swagger/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/rest_client.hpp b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/rest_client.hpp index 1619af271..3b855068a 100644 --- a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/rest_client.hpp +++ b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/rest_client.hpp @@ -1853,7 +1853,7 @@ namespace Azure { namespace Storage { namespace Blobs { struct DeleteBlobResult final { /** - * Indicates if the blob was successfully created by this operation. + * Indicates if the blob was successfully deleted by this operation. */ bool Deleted = true; }; diff --git a/sdk/storage/azure-storage-blobs/swagger/README.md b/sdk/storage/azure-storage-blobs/swagger/README.md index efb40c7ee..4d30abab0 100644 --- a/sdk/storage/azure-storage-blobs/swagger/README.md +++ b/sdk/storage/azure-storage-blobs/swagger/README.md @@ -1151,7 +1151,7 @@ directive: "x-ms-client-name": "DeleteBlobResult", "x-ms-sealed": false, "properties": { - "Deleted": {"type": "boolean", "x-ms-client-default": true, "x-ms-xml": {"name": ""}, "description": "Indicates if the blob was successfully created by this operation."} + "Deleted": {"type": "boolean", "x-ms-client-default": true, "x-ms-xml": {"name": ""}, "description": "Indicates if the blob was successfully deleted by this operation."} } }; ```