fix Typo in DeleteBlobResult documentation (#4178)

This commit is contained in:
microzchang 2022-12-09 14:14:28 +08:00 committed by GitHub
parent ae19ecafd6
commit 10daa9b5fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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;
};

View File

@ -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."}
}
};
```