Skip to content

Commit fd49003

Browse files
Final review edits
1 parent 68eb336 commit fd49003

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/storage/blobs/storage-blob-copy-async-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The following method wraps the [Copy Blob](/rest/api/storageservices/copy-blob)
5555

5656
- [beginCopy](/java/api/com.azure.storage.blob.specialized.blobclientbase#method-details)
5757

58-
The `beginCopy` method return a [SyncPoller](/java/api/com.azure.core.util.polling.syncpoller) to poll the progress of the copy operation. The poll response type is [BlobCopyInfo](/java/api/com.azure.storage.blob.models.blobcopyinfo). The `beginCopy` method is used when you want asynchronous scheduling for a copy operation.
58+
The `beginCopy` method returns a [SyncPoller](/java/api/com.azure.core.util.polling.syncpoller) to poll the progress of the copy operation. The poll response type is [BlobCopyInfo](/java/api/com.azure.storage.blob.models.blobcopyinfo). The `beginCopy` method is used when you want asynchronous scheduling for a copy operation.
5959

6060
## Copy a blob within the same storage account
6161

articles/storage/blobs/storage-blob-copy-url-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ To learn more about the `Put Blob From URL` operation, including blob size limit
4747

4848
This section gives an overview of methods provided by the Azure Storage client library for Java to perform a copy operation from a source object URL.
4949

50-
The following method wraps the [Put Blob From URL](/rest/api/storageservices/put-blob-from-url) REST API operation, and creates a new block blob where the contents of the blob are read from a given URL:
50+
The following methods wrap the [Put Blob From URL](/rest/api/storageservices/put-blob-from-url) REST API operation, and create a new block blob where the contents of the blob are read from a given URL:
5151

5252
- [uploadFromUrl](/java/api/com.azure.storage.blob.specialized.blockblobclient#method-details)
5353
- [uploadFromUrlWithResponse](/java/api/com.azure.storage.blob.specialized.blockblobclient#method-details)
5454

5555
These methods are preferred for scenarios where you want to move data into a storage account and have a URL for the source object.
5656

57-
For large objects, you may choose to work with individual blocks. The following method wraps the [Put Block From URL](/rest/api/storageservices/put-block-from-url) REST API operation. This method creates a new block to be committed as part of a blob where the contents are read from a source URL:
57+
For large objects, you can work with individual blocks. The following method wraps the [Put Block From URL](/rest/api/storageservices/put-block-from-url) REST API operation. This method creates a new block to be committed as part of a blob where the contents are read from a source URL:
5858

5959
- [stageBlockFromUrl](/java/api/com.azure.storage.blob.specialized.blockblobclient#method-details)
6060

0 commit comments

Comments
 (0)