Fix the grammar of storage docs (#2348)
This commit is contained in:
parent
2787785d0f
commit
8257ce32da
@ -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,
|
||||
|
||||
@ -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,
|
||||
|
||||
@ -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
|
||||
{
|
||||
|
||||
@ -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.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user