From dbb751066c2fae5760766595e9f0b43c3acf276b Mon Sep 17 00:00:00 2001 From: Dengke Date: Wed, 4 Sep 2024 09:16:21 -0700 Subject: [PATCH] doc renaming --- .../software/amazon/awssdk/crt/s3/S3MetaRequestOptions.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/software/amazon/awssdk/crt/s3/S3MetaRequestOptions.java b/src/main/java/software/amazon/awssdk/crt/s3/S3MetaRequestOptions.java index 602409e13..b91b492bf 100644 --- a/src/main/java/software/amazon/awssdk/crt/s3/S3MetaRequestOptions.java +++ b/src/main/java/software/amazon/awssdk/crt/s3/S3MetaRequestOptions.java @@ -400,7 +400,7 @@ public Path getResponseFilePath() { * * By default, the option is set to {@link ResponseFileOption#CREATE_OR_REPLACE}. * - * @param recvFileOption The option for handling the response file. + * @param responseFileOption The option for handling the response file. * @return this */ public S3MetaRequestOptions withResponseFileOption(ResponseFileOption responseFileOption) { @@ -417,7 +417,7 @@ public ResponseFileOption getResponseFileOption() { * This option is only applicable when {@link withResponseFileOption} is set * to {@link ResponseFileOption#WRITE_TO_POSITION}. * - * @param recvFilePosition The position to start writing to the response file. + * @param responseFilePosition The position to start writing to the response file. * @return this */ public S3MetaRequestOptions withResponseFilePosition(long responseFilePosition) { @@ -434,7 +434,7 @@ public long getResponseFilePosition() { * from S3. * This option is only applicable when a response file path is set. * - * @param recvFileDeleteOnFailure True to delete the response file on failure, + * @param responseFileDeleteOnFailure True to delete the response file on failure, * false to leave it as-is. */ public S3MetaRequestOptions withResponseFileDeleteOnFailure(boolean responseFileDeleteOnFailure) {