Fix the grammar of storage docs (#2348)

This commit is contained in:
JinmingHu 2021-05-26 23:30:37 +08:00 committed by GitHub
parent 2787785d0f
commit 8257ce32da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -135,7 +135,7 @@ namespace Azure { namespace Storage { namespace Blobs {
* @param content A BodyStream containing the content of the block to append.
* @param options Optional parameters to execute this function.
* @param context Context for cancelling long running operations.
* @return A AppendBlockResult describing the state of the updated append blob.
* @return An AppendBlockResult describing the state of the updated append blob.
*/
Azure::Response<Models::AppendBlockResult> AppendBlock(
Azure::Core::IO::BodyStream& content,
@ -152,7 +152,7 @@ namespace Azure { namespace Storage { namespace Blobs {
* blob is public, no authentication is required to perform the operation.
* @param options Optional parameters to execute this function.
* @param context Context for cancelling long running operations.
* @return A AppendBlockFromUriResult describing the state of the updated append blob.
* @return An AppendBlockFromUriResult describing the state of the updated append blob.
*/
Azure::Response<Models::AppendBlockFromUriResult> AppendBlockFromUri(
const std::string& sourceUri,

View File

@ -227,7 +227,7 @@ namespace Azure { namespace Storage { namespace Blobs {
* @param copyId ID of the copy operation to abort.
* @param options Optional parameters to execute this function.
* @param context Context for cancelling long running operations.
* @return A AbortBlobCopyFromUriResult on successfully aborting.
* @return An AbortBlobCopyFromUriResult on successfully aborting.
*/
Azure::Response<Models::AbortBlobCopyFromUriResult> AbortCopyFromUri(
const std::string& copyId,

View File

@ -65,7 +65,7 @@ namespace Azure { namespace Storage { namespace Blobs {
};
/**
* @brief Specifies access conditions for a append blob.
* @brief Specifies access conditions for an append blob.
*/
struct AppendBlobAccessConditions final : public BlobAccessConditions
{

View File

@ -18,7 +18,7 @@ namespace Azure { namespace Storage { namespace _internal {
// check if we need to get inner stream
if (this->m_inner == nullptr)
{
// Get a a bodyStream that starts from last known offset
// Get a bodyStream that starts from last known offset
// if this fails, throw bubbles up
// As m_inner is unique_pr, it will be destructed on reassignment, cleaning up network
// session.