diff --git a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/append_blob_client.hpp b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/append_blob_client.hpp index 696f6faab..4abe08375 100644 --- a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/append_blob_client.hpp +++ b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/append_blob_client.hpp @@ -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 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 AppendBlockFromUri( const std::string& sourceUri, diff --git a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_client.hpp b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_client.hpp index 467acd9de..b7e47a46a 100644 --- a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_client.hpp +++ b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_client.hpp @@ -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 AbortCopyFromUri( const std::string& copyId, diff --git a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp index ec3979a01..aa8d9b48f 100644 --- a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp +++ b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp @@ -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 { diff --git a/sdk/storage/azure-storage-common/src/reliable_stream.cpp b/sdk/storage/azure-storage-common/src/reliable_stream.cpp index 9f3be01e4..2aff5006e 100644 --- a/sdk/storage/azure-storage-common/src/reliable_stream.cpp +++ b/sdk/storage/azure-storage-common/src/reliable_stream.cpp @@ -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.