Skip to content

Commit 5121ae1

Browse files
committed
update comments
1 parent a2a911c commit 5121ae1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

include/aws/s3/s3_client.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ enum aws_s3_meta_request_type {
7777
* a CopyObject request to S3 if the object size is not large enough for
7878
* a multipart upload.
7979
* Note: copy support is still in development and has following limitations:
80-
* - host header must use virtual host addressing style (path style is not
80+
* 1. host header must use virtual host addressing style (path style is not
8181
* supported) and both source and dest buckets must have dns compliant name
82-
* - only {bucket}/{key} format is supported for source and passing arn as
82+
* 2. only {bucket}/{key} format is supported for source and passing arn as
8383
* source will not work
84-
* - source bucket is assumed to be in the same region as dest
85-
* - source bucket and dest bucket must both be either directory buckets or regular buckets.
84+
* 3. source bucket is assumed to be in the same region as dest
85+
* 4. source bucket and dest bucket must both be either directory buckets or regular buckets.
8686
*
87-
* Provide the `meta_request_options.copy_source_uri` to bypass these limitations.
87+
* Provide the `meta_request_options.copy_source_uri` to bypass limitation 1 & 2.
8888
*/
8989
AWS_S3_META_REQUEST_TYPE_COPY_OBJECT,
9090

@@ -874,7 +874,7 @@ struct aws_s3_meta_request_options {
874874

875875
/*
876876
* (Optional)
877-
* If performing a copy operation, provide the source URI here to bypass the limitations of the copy operation.
877+
* If performing a copy operation, provide the source URI here to bypass limitations 1 and 2 of the copy operation.
878878
* This will be ignored for other operations.
879879
*/
880880
const struct aws_byte_cursor copy_source_uri;

0 commit comments

Comments
 (0)